google_api_datastore v0.1.0 GoogleApi.Datastore.V1.Model.Query View Source
A query for entities.
Attributes
- distinctOn ([PropertyReference]): The properties to make distinct. The query results will contain the first result for each distinct combination of values for the given properties (if empty, all results are returned). Defaults to:
null
. - endCursor (binary()): An ending point for the query results. Query cursors are returned in query result batches and can only be used to limit the same query. Defaults to:
null
. - filter (Filter): The filter to apply. Defaults to:
null
. - kind ([KindExpression]): The kinds to query (if empty, returns entities of all kinds). Currently at most 1 kind may be specified. Defaults to:
null
. - limit (integer()): The maximum number of results to return. Applies after all other constraints. Optional. Unspecified is interpreted as no limit. Must be >= 0 if specified. Defaults to:
null
. - offset (integer()): The number of results to skip. Applies before limit, but after all other constraints. Optional. Must be >= 0 if specified. Defaults to:
null
. - order ([PropertyOrder]): The order to apply to the query results (if empty, order is unspecified). Defaults to:
null
. - projection ([Projection]): The projection to return. Defaults to returning all properties. Defaults to:
null
. - startCursor (binary()): A starting point for the query results. Query cursors are returned in query result batches and can only be used to continue the same query. Defaults to:
null
.
Link to this section Summary
Functions
Unwrap a decoded JSON object into its complex fields
Link to this section Types
Link to this type
t()
View Source
t() :: %GoogleApi.Datastore.V1.Model.Query{ distinctOn: [GoogleApi.Datastore.V1.Model.PropertyReference.t()], endCursor: any(), filter: GoogleApi.Datastore.V1.Model.Filter.t(), kind: [GoogleApi.Datastore.V1.Model.KindExpression.t()], limit: any(), offset: any(), order: [GoogleApi.Datastore.V1.Model.PropertyOrder.t()], projection: [GoogleApi.Datastore.V1.Model.Projection.t()], startCursor: any() }
Link to this section Functions
Unwrap a decoded JSON object into its complex fields.