Method: projects.runQuery

Queries for entities.

HTTP request

POST https://datastore.googleapis.com/v1/projects/{projectId}:runQuery

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
projectId

string

Required. The ID of the project against which to make the request.

Request body

The request body contains data with the following structure:

JSON representation
{
  "databaseId": string,
  "partitionId": {
    object (PartitionId)
  },
  "readOptions": {
    object (ReadOptions)
  },

  // Union field query_type can be only one of the following:
  "query": {
    object (Query)
  },
  "gqlQuery": {
    object (GqlQuery)
  }
  // End of list of possible types for union field query_type.
}
Fields
databaseId

string

The ID of the database against which to make the request.

'(default)' is not allowed; please use empty string '' to refer the default database.

partitionId

object (PartitionId)

Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID.

readOptions

object (ReadOptions)

The options for this query.

Union field query_type. The type of query. query_type can be only one of the following:
query

object (Query)

The query to run.

gqlQuery

object (GqlQuery)

The GQL query to run. This query must be a non-aggregation query.

Response body

The response for Datastore.RunQuery.

If successful, the response body contains data with the following structure:

JSON representation
{
  "batch": {
    object (QueryResultBatch)
  },
  "query": {
    object (Query)
  },
  "transaction": string
}
Fields
batch

object (QueryResultBatch)

A batch of query results (always present).

query

object (Query)

The parsed form of the GqlQuery from the request, if it was set.

transaction

string (bytes format)

The identifier of the transaction that was started as part of this projects.runQuery request.

Set only when ReadOptions.new_transaction was set in RunQueryRequest.read_options.

A base64-encoded string.

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/datastore
  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

QueryResultBatch

A batch of results produced by a query.

JSON representation
{
  "skippedResults": integer,
  "skippedCursor": string,
  "entityResultType": enum (ResultType),
  "entityResults": [
    {
      object (EntityResult)
    }
  ],
  "endCursor": string,
  "moreResults": enum (MoreResultsType),
  "snapshotVersion": string,
  "readTime": string
}
Fields
skippedResults

integer

The number of results skipped, typically because of an offset.

skippedCursor

string (bytes format)

A cursor that points to the position after the last skipped result. Will be set when skippedResults != 0.

A base64-encoded string.

entityResultType

enum (ResultType)

The result type for every entity in entityResults.

entityResults[]

object (EntityResult)

The results for this batch.

endCursor

string (bytes format)

A cursor that points to the position after the last result in the batch.

A base64-encoded string.

moreResults

enum (MoreResultsType)

The state of the query after the current batch.

snapshotVersion

string (int64 format)

The version number of the snapshot this batch was returned from. This applies to the range of results from the query's startCursor (or the beginning of the query if no cursor was given) to this batch's endCursor (not the query's endCursor).

In a single transaction, subsequent query result batches for the same query can have a greater snapshot version number. Each batch's snapshot version is valid for all preceding batches. The value will be zero for eventually consistent queries.

readTime

string (Timestamp format)

Read timestamp this batch was returned from. This applies to the range of results from the query's startCursor (or the beginning of the query if no cursor was given) to this batch's endCursor (not the query's endCursor).

In a single transaction, subsequent query result batches for the same query can have a greater timestamp. Each batch's read timestamp is valid for all preceding batches. This value will not be set for eventually consistent queries in Cloud Datastore.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

ResultType

Specifies what data the 'entity' field contains. A ResultType is either implied (for example, in LookupResponse.missing from datastore.proto, it is always KEY_ONLY) or specified by context (for example, in message QueryResultBatch, field entityResultType specifies a ResultType for all the values in field entityResults).

Enums
RESULT_TYPE_UNSPECIFIED Unspecified. This value is never used.
FULL The key and properties.
PROJECTION A projected subset of properties. The entity may have no key.
KEY_ONLY Only the key.