All topics
General · Learning hub

GraphQL notes for developers

Master GraphQL with a curated set of 3 developer notes — core concepts, patterns, and interview prep. Maintained by the DevRecall team.

Save this stack to your DevRecallMore General notes
GraphQL

Schema & Types

Schema & Types Type System # Scalar types String Int Float Boolean ID # Custom scalars scalar DateTime scalar JSON scalar Upload # Object type type User { id: I

GraphQL

Queries, Mutations & Apollo Client

Queries, Mutations & Apollo Client Writing Queries # Basic query query GetUser { user(id: "1") { id name email } } # With variables query GetUser($id: ID!) { us

GraphQL

Interview Questions

GraphQL Interview Questions Q: What is GraphQL and how does it differ from REST? GraphQL is a query language and runtime for APIs. Key differences from REST: (1

Keep your GraphQL knowledge sharp.

Save this stack to your personal DevRecall — add your own notes, track what you're learning, and share what you know with the community.

Get started — free forever