Returns an RxJS operator to refresh a Resource or Collection of resources. It is equivalent to
switchMap(resource => of(undefined)) Copy
switchMap(resource => of(undefined))
if resource is null or undefined and to
resource
null
undefined
switchMap(resource => resource.read()) Copy
switchMap(resource => resource.read())
otherwise.
a function that transforms the source Observable
Generated using TypeDoc
Returns an RxJS operator to refresh a Resource or Collection of resources. It is equivalent to
if
resource
isnull
orundefined
and tootherwise.