Class: Google::Cloud::Datastore::Query
- Inherits:
-
Object
- Object
- Google::Cloud::Datastore::Query
- Defined in:
- lib/google/cloud/datastore/query.rb
Overview
Query
Represents the search criteria against a Datastore.
Instance Method Summary collapse
-
#ancestor(parent) ⇒ Object
Add a filter for entities that inherit from a key.
-
#group_by(*names) ⇒ Object
(also: #distinct_on)
Group results by a list of properties.
-
#initialize ⇒ Query
constructor
Returns a new query object.
-
#kind(*kinds) ⇒ Object
Add the kind of entities to query.
-
#limit(num) ⇒ Object
Set a limit on the number of results to be returned.
-
#offset(num) ⇒ Object
Set an offset for the results to be returned.
-
#order(name, direction = :asc) ⇒ Object
Sort the results by a property name.
-
#select(*names) ⇒ Object
(also: #projection)
Retrieve only select properties from the matched entities.
-
#start(cursor) ⇒ Object
(also: #cursor)
Set the cursor to start the results at.
-
#where(name, operator, value) ⇒ Object
(also: #filter)
Add a property filter to the query.
Constructor Details
Instance Method Details
#ancestor(parent) ⇒ Object
Add a filter for entities that inherit from a key.
205 206 207 208 209 |
# File 'lib/google/cloud/datastore/query.rb', line 205 def ancestor parent # Use key if given an entity parent = parent.key if parent.respond_to? :key where "__key__", "~", parent end |
#group_by(*names) ⇒ Object Also known as: distinct_on
Group results by a list of properties.
401 402 403 404 405 406 407 408 409 |
# File 'lib/google/cloud/datastore/query.rb', line 401 def group_by *names names.each do |name| grpc_property = Google::Datastore::V1::PropertyReference.new( name: name) @grpc.distinct_on << grpc_property end self end |
#kind(*kinds) ⇒ Object
Add the kind of entities to query.
Special entity kinds such as __namespace__
, __kind__
, and
__property__
can be used for metadata
queries.
75 76 77 78 79 80 81 82 83 |
# File 'lib/google/cloud/datastore/query.rb', line 75 def kind *kinds kinds.each do |kind| grpc_kind = Google::Datastore::V1::KindExpression.new( name: kind) @grpc.kind << grpc_kind end self end |
#limit(num) ⇒ Object
Set a limit on the number of results to be returned.
288 289 290 291 292 |
# File 'lib/google/cloud/datastore/query.rb', line 288 def limit num @grpc.limit = Google::Protobuf::Int32Value.new(value: num) self end |
#offset(num) ⇒ Object
Set an offset for the results to be returned.
309 310 311 312 313 |
# File 'lib/google/cloud/datastore/query.rb', line 309 def offset num @grpc.offset = num self end |
#order(name, direction = :asc) ⇒ Object
Sort the results by a property name. By default, an ascending sort order will be used. To sort in descending order, provide a second argument of a string or symbol that starts with "d".
264 265 266 267 268 269 270 271 272 |
# File 'lib/google/cloud/datastore/query.rb', line 264 def order name, direction = :asc @grpc.order << Google::Datastore::V1::PropertyOrder.new( property: Google::Datastore::V1::PropertyReference.new( name: name), direction: prop_order_direction(direction) ) self end |
#select(*names) ⇒ Object Also known as: projection
Retrieve only select properties from the matched entities.
373 374 375 376 377 378 379 380 381 382 |
# File 'lib/google/cloud/datastore/query.rb', line 373 def select *names names.each do |name| grpc_projection = Google::Datastore::V1::Projection.new( property: Google::Datastore::V1::PropertyReference.new( name: name)) @grpc.projection << grpc_projection end self end |
#start(cursor) ⇒ Object Also known as: cursor
Set the cursor to start the results at.
330 331 332 333 334 335 336 337 338 339 340 |
# File 'lib/google/cloud/datastore/query.rb', line 330 def start cursor if cursor.is_a? Cursor @grpc.start_cursor = cursor.to_grpc elsif cursor.is_a? String @grpc.start_cursor = Convert.decode_bytes cursor else fail ArgumentError, "Can't set a cursor using a #{cursor.class}." end self end |
#where(name, operator, value) ⇒ Object Also known as: filter
Add a property filter to the query.
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/google/cloud/datastore/query.rb', line 169 def where name, operator, value @grpc.filter ||= Google::Datastore::V1::Filter.new( composite_filter: Google::Datastore::V1::CompositeFilter.new( op: :AND ) ) @grpc.filter.composite_filter.filters << \ Google::Datastore::V1::Filter.new( property_filter: Google::Datastore::V1::PropertyFilter.new( property: Google::Datastore::V1::PropertyReference.new( name: name), op: Convert.to_prop_filter_op(operator), value: Convert.to_value(value) ) ) self end |