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