graphql

Installation
SKILL.md

GraphQL Development

Design efficient GraphQL APIs.

When to Use

  • Creating GraphQL schemas
  • Resolver implementation
  • N+1 query problems
  • Federation/stitching
  • Performance optimization

Schema Design

type Query {
  user(id: ID!): User
  users(filter: UserFilter, limit: Int = 10): UserConnection!
}
Installs
34
GitHub Stars
76
First Seen
Jan 22, 2026
graphql — htlin222/dotfiles