Class: Google::Datastore::V1::Query
- Inherits:
-
Object
- Object
- Google::Datastore::V1::Query
- Defined in:
- lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb
Overview
A query for entities.
Instance Attribute Summary collapse
-
#distinct_on ⇒ Array<Google::Datastore::V1::PropertyReference>
The properties to make distinct.
-
#end_cursor ⇒ String
An ending point for the query results.
-
#filter ⇒ Google::Datastore::V1::Filter
The filter to apply.
-
#kind ⇒ Array<Google::Datastore::V1::KindExpression>
The kinds to query (if empty, returns entities of all kinds).
-
#limit ⇒ Google::Protobuf::Int32Value
The maximum number of results to return.
-
#offset ⇒ Integer
The number of results to skip.
-
#order ⇒ Array<Google::Datastore::V1::PropertyOrder>
The order to apply to the query results (if empty, order is unspecified).
-
#projection ⇒ Array<Google::Datastore::V1::Projection>
The projection to return.
-
#start_cursor ⇒ String
A starting point for the query results.
Instance Attribute Details
#distinct_on ⇒ Array<Google::Datastore::V1::PropertyReference>
Returns 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).
97 |
# File 'lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb', line 97 class Query; end |
#end_cursor ⇒ String
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.
97 |
# File 'lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb', line 97 class Query; end |
#filter ⇒ Google::Datastore::V1::Filter
Returns The filter to apply.
97 |
# File 'lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb', line 97 class Query; end |
#kind ⇒ Array<Google::Datastore::V1::KindExpression>
Returns The kinds to query (if empty, returns entities of all kinds). Currently at most 1 kind may be specified.
97 |
# File 'lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb', line 97 class Query; end |
#limit ⇒ Google::Protobuf::Int32Value
Returns The maximum number of results to return. Applies after all other constraints. Optional. Unspecified is interpreted as no limit. Must be >= 0 if specified.
97 |
# File 'lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb', line 97 class Query; end |
#offset ⇒ Integer
Returns The number of results to skip. Applies before limit, but after all other constraints. Optional. Must be >= 0 if specified.
97 |
# File 'lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb', line 97 class Query; end |
#order ⇒ Array<Google::Datastore::V1::PropertyOrder>
Returns The order to apply to the query results (if empty, order is unspecified).
97 |
# File 'lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb', line 97 class Query; end |
#projection ⇒ Array<Google::Datastore::V1::Projection>
Returns The projection to return. Defaults to returning all properties.
97 |
# File 'lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb', line 97 class Query; end |
#start_cursor ⇒ String
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.
97 |
# File 'lib/google/cloud/datastore/v1/doc/google/datastore/v1/query.rb', line 97 class Query; end |