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.
163 164 165 166 167 |
# File 'lib/google/cloud/datastore/query.rb', line 163 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.
319 320 321 322 323 324 325 326 327 |
# File 'lib/google/cloud/datastore/query.rb', line 319 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.
65 66 67 68 69 70 71 72 73 |
# File 'lib/google/cloud/datastore/query.rb', line 65 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.
226 227 228 229 230 |
# File 'lib/google/cloud/datastore/query.rb', line 226 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.
243 244 245 246 247 |
# File 'lib/google/cloud/datastore/query.rb', line 243 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".
206 207 208 209 210 211 212 213 214 |
# File 'lib/google/cloud/datastore/query.rb', line 206 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.
295 296 297 298 299 300 301 302 303 304 |
# File 'lib/google/cloud/datastore/query.rb', line 295 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.
260 261 262 263 264 265 266 267 268 269 270 |
# File 'lib/google/cloud/datastore/query.rb', line 260 def start cursor if cursor.is_a? Cursor @grpc.start_cursor = cursor.to_grpc elsif cursor.is_a? String @grpc.start_cursor = Core::GRPCUtils.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.
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/google/cloud/datastore/query.rb', line 131 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: Core::GRPCUtils.to_prop_filter_op(operator), value: Core::GRPCUtils.to_value(value) ) ) self end |