Docs
Code Rabbit
Cloudflare
AG Grid
Netlify
Neon
WorkOS
Clerk
Convex
Electric
Sentry
Prisma
Strapi
Unkey
UI.dev
Code Rabbit
Cloudflare
AG Grid
Netlify
Neon
WorkOS
Clerk
Convex
Electric
Sentry
Prisma
Strapi
Unkey
UI.dev
Community Resources

Angular Query

The Angular adapter is now available for TanStack Query v5.

ts
  postQuery = injectQuery(() => ({
    enabled: this.postId() > 0,
    queryKey: ['post', this.postId()],
    queryFn: () => lastValueFrom(this.getPost$(this.postId()))
  }))
  postQuery = injectQuery(() => ({
    enabled: this.postId() > 0,
    queryKey: ['post', this.postId()],
    queryFn: () => lastValueFrom(this.getPost$(this.postId()))
  }))

It's based on Angular signals and compatible with Angular v16+.

Check the complete documentation: Angular Query overview.