6. 'Something' doesn't exist on type 'Query'

Meaning the field I am trying to query is not defined in the root query type.
The Query type is where all the operations (or entry points) for fetching data are defined.

{
  __type(name: "Query") {
    fields {
      name
    }
  }
}