There are a few different ways to add queries to your schema. The simplest way is to define a
Query type with your query fields using the builder.queryType() method.
You can only use builder.queryType() once in your schema, because it is responsible for defining
the Query type itself. If you want to split up your queries and add query fields individually, you
can use the builder.queryField() method to add individual query fields to the Query type.
If you want to add multiple query fields at once, you can use the builder.queryFields() method.
Mutations work just like queries, and you can use the builder.mutationType(),
builder.mutationField(), and builder.mutationFields() methods to add mutations to your schema.