Schema
Most of the types you define in a GraphQL schema are object types. An object type contains fields, each of which can be either a scalar type or another object type. For Content Hub, there are several types in the GraphQL schema for each publishable entity definition. You can list the types generated: a singular query type, an “all” query type, a predicate type for writing “where” clauses, or a single return type. The fields of these types are generated based on the field of the entity definition. The DOCS tab in the IDE contains more information about object types.
Read more here: Source link