I have a question about the right way to say some things, for example:
type Query {
products: [Product]!
}
How do you refer to the products?
- Query products?
- Query field products?
- Field products?
I have a question about the right way to say some things, for example:
type Query {
products: [Product]!
}
How do you refer to the products?
If writing it out, I write Query.products.
Out loud, could be “The products field on the Query type”, “Query dot products” or simply “products” (if the context implies we’re talking about the root fields).