Union Types

type Schedule {

    agenda: [AgendaItem!]!

}

union AgendaItem = StudyGroup | Workout

query {

    agenda {

        ...on Workout {

           name

           reps

       }

        ...on StudyGroup {

           name

           subject

           students

       }

  }

}

Query

Interfaces

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: _____

Union Types

type Query {

    familyPets: [FamilyPets!]!

}

union FamilyPet = Cat | Dog

Query

query {
  familyPets {
    __typename
    ...on Cat {
      name
      weight
    }
    ...on Dog {
      name
      status
    }
  }
}

City to City

type City {

     name: String!

     connections: [City!]!

}

 

BOISE

SUN VALLEY

BEND

155 MILES

318 MILES

Through Types

type City {

     name: String!

     connections: [Connection!]!

}

 

type Connection {

     distance: Int!

     to: City!

}

BOISE

SUN VALLEY

155 MILES

BEND

318 MILES

Apollo - Schema Design Advanced

By Moon Highway

Apollo - Schema Design Advanced

Schema Design Workshop

  • 477