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!
}