Skip to content
SP StackPractices

graphql

Practical resources about graphql for software engineers.

1 results

Designing Flexible APIs with GraphQL

GraphQL shifts the power balance from server to client, allowing consumers to request exactly the data they need. But with flexibility comes complexity: N+1 queries, schema evolution, and resolver performance require careful design.

Explore recipes for writing resolvers, implementing federation, handling subscriptions, and managing schema versioning. Each pattern includes performance considerations and security best practices specific to GraphQL implementations.

advanced

Complete Guide to GraphQL Federation

Build unified GraphQL APIs across multiple services with Apollo Federation. Covers subgraphs, supergraph composition, entity resolution, and gateway deployment.