OBJECT
Query
Data fetch operations.
link GraphQL Schema definition
- type Query {
 - #   Retrieve a single model by ID.
 - # 
 - #   @error not.found: If no model with the given id exists.
 - #   @error not.unique: If multiple models with the given id exist for this 
 - #   organization. Note this only applies when searching on a `field` other than 
 - #   `id`.
 - # 
 - # Arguments
 - #   id: The id of the model to retrieve.
 - #   field: The id field to use, defaults to the primary identifier 
 - #   (id) but may also
 - #   be a secondary identifier if that id is only applied to a single model.
 - #   If you need to list models using a non-unique secondary identifier
 - #   then use the models search instead which supports both exact and partial 
 - #   matches.
 - #   For example to list all the models with an internalId of `test` the request 
 - #   would
 - #   be `models(query: "internalId: test")`.
 - (: ID!, : ModelIdField): Model 
 - #   Retrieve a page of models given an optional query.
 - # 
 - # Arguments
 - #   include: In addition to active models, include modules with the 
 - #   following properies.
 - #   query: A free text search for models.  If unspecified all 
 - #   models within the current organization
 - #   will be returned.
 - #   sortBy: The order to return the results in, defaults to created 
 - #   time, descending.
 - #   Default: [{ "field": score, order: desc }]
 - #   pageSize: The maximum number of results to return in a single 
 - #   page.  If the requested pageSize exceeds
 - #   the maximum of 1000, the value 1000 will be used.
 - #   Default: 10
 - #   offset: An offset id for the next page to retrieve.  The value 
 - #   from `nextOffset` in the previous result should
 - #   be used to grab the next page.
 - (
 - : [SearchInclusion!],
 - : String,
 - : [ModelSort!],
 - : Int,
 - : String
 - ): ModelSearchResultList 
 - }
 
    link Require by
This element is not required by anyone