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

Latest commit

 

History

History
25 lines (18 loc) · 703 Bytes

15-explore-refactored-graphql-queries.md

File metadata and controls

25 lines (18 loc) · 703 Bytes

Video Link

Summary

In this lesson we go over the refactored Pet Library and get a look at some of the new queries.

Notes

Our refactored pet library just got some new queries and can be found at https://funded-pet-library.moonhighway.com/.

With the updates, we can now query totalPets, availablePets, checkedOutPets and customersWithPets without any additional filters. 🎉

query {
  customersWithPets {
    username
    name
  }
  totalPets
  availablePets
  checkedOutPets
}

alt text