graphql-schema-design

Installation
SKILL.md

GraphQL Schema Design

Apply GraphQL schema design principles to create well-structured, maintainable, and scalable GraphQL APIs. This skill covers the type system, Schema Definition Language (SDL), field design patterns, pagination strategies, directives, and schema evolution techniques.

Core Type System

Object Types

Object types are the fundamental building blocks of GraphQL schemas. Each object type represents a kind of object you can fetch from your service, and what fields it has.

type User {
  id: ID!
  username: String!
Related skills
Installs
21
GitHub Stars
152
First Seen
Jan 22, 2026