Skip to content
This repository was archived by the owner on Jul 21, 2020. It is now read-only.

Latest commit

 

History

History
51 lines (35 loc) · 1.54 KB

17-query-lists-of-multiple-types-using-a-union-in-graphql.md

File metadata and controls

51 lines (35 loc) · 1.54 KB

Video Link

Summary

In this lesson we learn about unions and how to write queries that obtain a list of multiple types.

Notes

In the refactored pet library there are some more queries that we haven't had a look at yet, familyPets and exoticPets.

If you open up the schema and click on familyPets, you will see some helpful documentation that says "This query returns a list of Family Pets, either a Cat or Dog."

alt text

Another useful data structure when working with GraphQL is a union. We use a union when we want to return a list of multiple types.

alt text

Unions don't share any fields, so if we try to query the name field, we will get an error.

"Cannot query field \"name\" on type \"FamilyPet\". Did you mean to use an inline fragment on \"Pet\", \"Cat\", or \"Dog\"?"

alt text

If we want to query additional pet data, we can use inline fragments.

query {
  familyPets {
    __typename
    # This queries cat specific data
    ... on Cat {
      name
      sleepAmount
    }
    # This queries dog specific data
    ... on Dog {
      name
      good
    }
  }
}

We will see that the error now goes away, and we get back out data. 🥳

Resources