In my graphQL schema, I have a relationship between two objects. Say Humans and Cats.
Humans have many Cats and Cats have one human.
If I want to create a new Cat belonging to a human, I need to query for the human by ID and then I need to use that ID to do a mutation to create the cat.
How can I chain these together? It seems simple but can't find an appropriate example. It is also very likely that I'm thinking about this in the wrong way.