graphql-concepts
Installation
SKILL.md
GraphQL Concepts
Core Concepts
Schema Definition Language (SDL)
# Types
type User {
id: ID!
email: String!
name: String
posts: [Post!]!
createdAt: DateTime!
}
# Types
type User {
id: ID!
email: String!
name: String
posts: [Post!]!
createdAt: DateTime!
}