graphql-expert

Installation
SKILL.md

GraphQL Expert

GraphQL: ask for exactly what you need, nothing more.


1. Schema Design Principles

# Think in graphs, not resources
# Good: model the domain
type User {
  id: ID!
  name: String!
  email: String!
  posts(first: Int, after: String): PostConnection!
  role: UserRole!
}
Installs
5
GitHub Stars
9
First Seen
May 19, 2026
graphql-expert — skeletorflet/opencode-kit