graphql
Installation
SKILL.md
GraphQL Development
GraphQL API design, implementation, and best practices.
Schema Design
Type Definitions
# Scalar types
type User {
id: ID!
email: String!
name: String
age: Int
balance: Float
isActive: Boolean!
createdAt: DateTime! # Custom scalar
}