|
Is there any way to access the query results as an observable? I would like to connect my server state to some complex local state using a second library which requires Subjects/Observables as inputs but I do not see any options for this. Don't get me wrong, I love Signals, and ultimately the second library I am using will expose the data as Signals to the components, but it would be great for authoring to be able to work with queries as Subjects/Observables for situations such as this |
Answered by
arnoud-dv
Dec 4, 2023
Replies: 1 comment 1 reply
|
You can easily convert any signals using toObservable. Currently exploring ways to further improve developer experience working with Angular Query and observables. But the RxJS interop from Angular is very good. |
1 reply
Answer selected by
DakotaP22
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can easily convert any signals using toObservable.
Currently exploring ways to further improve developer experience working with Angular Query and observables. But the RxJS interop from Angular is very good.