Add explicit lifecycle pipelines and scheduled query refreshes #68
Reference in New Issue
Block a user
Delete Branch "next"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
serviceconstructors with explicitmake(...).pipe(thenRun)lifecycle pipelines.Query.withScheduledRefresh.@effect-view/vite-pluginto the publish workflow.Breaking changes
The following constructors have been replaced:
Query.service(options)→Query.make(options).pipe(Query.thenRun)QueryClient.service(options)→QueryClient.make(options).pipe(QueryClient.thenRun)MutationForm.service(options)→MutationForm.make(options).pipe(MutationForm.thenRun)LensForm.service(options)→LensForm.make(options).pipe(LensForm.thenRun)This separates object construction from starting its scoped background behavior.
Scheduled Query refreshes
Queries can now be refreshed with any Effect
Schedule: