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

Latest commit

 

History

History
61 lines (45 loc) · 2.11 KB

05-filter-a-qraphql-query-result-using-qrguments.md

File metadata and controls

61 lines (45 loc) · 2.11 KB

Video Link

Summary

In this lesson, we will filter a list of pets by status.

Notes

We've gotten total pets. Total pets tells us that there are 25 pets that are part of our library, but I might want to filter this list to see just the pets that are available or just the pets that are checked out.

To do this, I'm going to add a GraphQL argument. There's an argument on the totalPets query called status. This will take in either available or checked out. If we add Available, we'll see that there are 20 available pets.

query {
  totalPets(status: AVAILABLE)
  allPets {
    name
    weight
    category
    photo {
      thumb
      full
    }
  }
}

If we change this to CHECKEDOUT, we'll see that the total checked out pets is five.

query {
  totalPets(status: CHECKEDOUT)
  allPets {
    name
    weight
    category
    photo {
      thumb
      full
    }
  }
}

If we look at the totalPets query in the schema, we'll see that it has this optional status argument.

The value that I need to send is for PetStatus. PetStatus is an enum, either available or checked out. Now as we saw before, totalPets will work without a filter, but if I do provide a status filter, this will filter the list based on the value that I provide for PetStatus.

Personal Take

When we start working with variables, we need to do three things:

    1. Replace the static value in the query with $variableName
    1. Declare $variableName as one of the variables accepted by the query
    1. Pass variableName: value in the separate, transport-specific (usually JSON) variables dictionary