Core Concepts
The Schema Definition Language (SDL)
type Person {
name: String!
age: Int!
}type Post {
title: String!
author: Person!
}type Person {
name: String!
age: Int!
posts: [Post!]!
}Fetching Data with Queries
Last updated