id: ID!
name: String!
type Photo {
id: ID!
name: String!
url: String!
description: String
rating: Float
private: Boolean!
}
name: String!
description: String
type Query {
totalUsers: Int!
}
type Query {
totalUsers(role: ROLE!): Int!
}
type User {
postedPhotos: [Photo!]!
}
photos: [Photo]
photos: [Photo]!
photos: [Photo!]!
Nullable list of nullable values
Non-nullable list of nullable values
Non-nullable list of non-nullable values
enum PhotoCategory {
PORTRAIT
ACTION
LANDSCAPE
}
type Mutation {
postPhoto: Boolean!
}
type Mutation {
postPhoto (name: String!): Photo!
}
input PostPhotoInput {
name: String!
category: PhotoCategory=PORTRAIT
description: String
}
mutation addPhoto ($input: PostPhotoInput!) {
postPhoto(input: $input) {
id
name
url
}
}
{
"input": {
"name": "Desert Sunset",
"description": "Sunset over Sedona",
"category": "LANDSCAPE"
}
}
Query Variables
type Subscription {
newPhoto: Photo!
}
scalar DateTime
type Photo {
created: DateTime!
updated: DateTime!
}
type Photo {
postedBy: User!
}
type User {
postedPhotos: [Photo!]!
}
type Student {
schedule: [Course!]!
}
type Course {
students: [Student!]!
}
type City {
name: String!
connections: [City!]!
}
BOISE
SUN VALLEY
BEND
155 MILES
318 MILES
type City {
name: String!
connections: [Connection!]!
}
type Connection {
distance: Int!
to: City!
}
BOISE
SUN VALLEY
155 MILES
BEND
318 MILES
type PageInfo {
hasNextPage: Boolean!
hasPreviousPage: Boolean!
startCursor: ID!
endCursor: ID!
}
type CityEdge {
node: City!
cursor: ID!
}
type City {
name: String!
connections(
first: Int!,
after: ID!
): [CityConnection!]!
}
type CityConnection {
edges: [CityEdge]
pageInfo: PageInfo!
}
type Schedule {
agenda: [AgendaItem!]!
}
union AgendaItem = StudyGroup | Workout
query {
agenda {
...on Workout {
name
reps
}
...on StudyGroup {
name
subject
students
}
}
}
Query
interface ScheduleItem {
name: String!
start: Int
end: Int
}
type StudyGroup implements ScheduleItem {
name: String!
start: Int
end: Int
students: Int!
}
type Workout implements ScheduleItem {
name: Location!
start: Int
end: Int
reps: Int!
}
type Query {
agenda: [ScheduleItem!]!
}
enum PetCategory
DOG
CAT
STINGRAY
RABBIT
type Pet
id: ID!
name: String!
category: PetCategory!
...
HORSE
sleepAmount: Int
curious: Boolean
favoriteFood: String
floppy: Int
good: Boolean
chill: Boolean
fast: Boolean
streetsmart: Boolean
majestic: Boolean
interface Pet
type Cat implements Pet
id: ID!
name: String
...
sleepAmount: Int
curious: Boolean
id: ID!
name: String!
weight: Float
status: PetStatus
photo: Photo
dueDate: Date
inCareOf: Customer
type Dog implements Pet
id: ID!
name: String
...
good: Boolean
type Rabbit implements Pet
id: ID!
name: String
...
favoriteFood: String
floppy: Int
type Stingray
implements Pet
id: ID!
name: String
...
chill: Boolean
fast: Boolean
type Horse
implements Pet
id: ID!
name: String
...
streetsmart: Boolean
majestic: Boolean
type *TBDFuturePet
implements Pet
id: ID!
name: String
...
newField: _____
newField: _____
type Query {
familyPets: [FamilyPets!]!
}
union FamilyPet = Cat | Dog
Query
query {
familyPets {
__typename
...on Cat {
name
weight
}
...on Dog {
name
status
}
}
}