Class: Google::Cloud::Datastore::Query

Inherits:
Object
  • Object
show all
Defined in:
lib/google/cloud/datastore/query.rb

Overview

Query

Represents the search criteria against a Datastore.

Examples:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  where("done", "=", false).
  where("priority", ">=", 4).
  order("priority", :desc)

tasks = datastore.run query

See Also:

Instance Method Summary collapse

Constructor Details

#initializeQuery

Returns a new query object.

Examples:

query = Google::Cloud::Datastore::Query.new


48
49
50
# File 'lib/google/cloud/datastore/query.rb', line 48

def initialize
  @grpc = Google::Datastore::V1::Query.new
end

Instance Method Details

#ancestor(parent) ⇒ Object

Add a filter for entities that inherit from a key.

Examples:

task_list_key = datastore.key "TaskList", "default"

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  ancestor(task_list_key)

tasks = datastore.run query


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.

Examples:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  distinct_on("type", "priority").
  order("type").
  order("priority")

tasks = datastore.run query


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.

Examples:

query = Google::Cloud::Datastore::Query.new
query.kind "Task"

tasks = datastore.run query


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.

Examples:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  limit(5)

tasks = datastore.run query


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.

Examples:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  limit(5).
  offset(10)

tasks = datastore.run query


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".

Examples:

With ascending sort order:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  order("created")

tasks = datastore.run query

With descending sort order:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  order("created", :desc)

tasks = datastore.run query

With multiple sort orders:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  order("priority", :desc).
  order("created")

tasks = datastore.run query

A property used in inequality filter must be ordered first:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  where("priority", ">", 3).
  order("priority").
  order("created")

tasks = datastore.run query


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.

Examples:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  select("priority", "percent_complete")

priorities = []
percent_completes = []
datastore.run(query).each do |task|
  priorities << task["priority"]
  percent_completes << task["percent_complete"]
end

A keys-only query using the special property __key__:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  select("__key__")

keys = datastore.run(query).map(&:key)


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.

Examples:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  limit(page_size).
  start(page_cursor)

tasks = datastore.run query


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.

Examples:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  where("done", "=", false)

tasks = datastore.run query

Add a composite property filter:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  where("done", "=", false).
  where("priority", ">=", 4)

tasks = datastore.run query

Add an inequality filter on a single property only:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  where("created", ">=", Time.utc(1990, 1, 1)).
  where("created", "<", Time.utc(2000, 1, 1))

tasks = datastore.run query

Add a composite filter on an array property:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  where("tag", "=", "fun").
  where("tag", "=", "programming")

tasks = datastore.run query

Add an inequality filter on an array property :

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  where("tag", ">", "learn").
  where("tag", "<", "math")

tasks = datastore.run query

Add a key filter using the special property __key__:

query = Google::Cloud::Datastore::Query.new
query.kind("Task").
  where("__key__", ">", datastore.key("Task", "someTask"))

tasks = datastore.run query

Add a key filter to a kindless query:

last_seen_key = datastore.key "Task", "a"
query = Google::Cloud::Datastore::Query.new
query.where("__key__", ">", last_seen_key)

tasks = datastore.run 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