Learn why even small teams benefit from #GraphQL in my blog post: www.ravianand.me/blog/small-t...
Learn why even small teams benefit from #GraphQL in my blog post: www.ravianand.me/blog/small-t...
Subscriptions provide an easy way to add real-time features like notifications or live updates directly into your app.
Subscriptions provide an easy way to add real-time features like notifications or live updates directly into your app.
GraphQL clients like Apollo handle caching, pagination, and more, letting you focus on building reactive and feature-rich applications.
GraphQL clients like Apollo handle caching, pagination, and more, letting you focus on building reactive and feature-rich applications.
GraphQL encourages efficient patterns like cursor-based pagination (Relay-style Connections) and minimizes the N+1 problem with dataloaders and pre-joining data.
GraphQL encourages efficient patterns like cursor-based pagination (Relay-style Connections) and minimizes the N+1 problem with dataloaders and pre-joining data.
Backend: Use tools like GraphQL Codegen by The Guild to generate resolver types or even templates for resolver functions.
Frontend: Generate type-safe queries to ensure you're always accessing the right fields.
Backend: Use tools like GraphQL Codegen by The Guild to generate resolver types or even templates for resolver functions.
Frontend: Generate type-safe queries to ensure you're always accessing the right fields.
1️⃣ Type-Safety
With GraphQL, API documentation becomes part of your development process. No need for OpenAPI schemas or Swagger docs—everything is defined in the schema itself.
1️⃣ Type-Safety
With GraphQL, API documentation becomes part of your development process. No need for OpenAPI schemas or Swagger docs—everything is defined in the schema itself.
It’s open-source, hosted on Vercel with Neon for a serverless Postgres DB. Check it out: ravianand.me
#webdev #nextjs #opensource #buildinpublic
It’s open-source, hosted on Vercel with Neon for a serverless Postgres DB. Check it out: ravianand.me
#webdev #nextjs #opensource #buildinpublic
Learn how GraphQL empowers solo developers and small teams with a better dev workflow by providing caching, code generation & more.
Read more: www.ravianand.me/blog/small-t...
#graphql #go #startups #typescript
Learn how GraphQL empowers solo developers and small teams with a better dev workflow by providing caching, code generation & more.
Read more: www.ravianand.me/blog/small-t...
#graphql #go #startups #typescript
Explore how we implemented backend support for infinite scrolling and multi-column sorting using cursor-based pagination.
Read more: www.ravianand.me/blog/cursor-...
#golang #backend #postgres #sql #graphql