In this lesson, we will filter a list of pets by status.
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
.
When we start working with variables, we need to do three things:
-
- Replace the static value in the query with
$variableName
- Replace the static value in the query with
-
- Declare
$variableName
as one of the variables accepted by the query
- Declare
-
- Pass
variableName
: value in the separate, transport-specific (usually JSON) variables dictionary
- Pass