Class RunQueryRequest
The request for Datastore.RunQuery.
Implements
Inherited Members
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.dll
Syntax
public class RunQueryRequest : IDirectResponseSchema
Properties
DatabaseId
The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.
Declaration
[JsonProperty("databaseId")]
public virtual string DatabaseId { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ExplainOptions
Optional. Explain options for the query. If set, additional query statistics will be returned. If not, only query results will be returned.
Declaration
[JsonProperty("explainOptions")]
public virtual ExplainOptions ExplainOptions { get; set; }
Property Value
Type | Description |
---|---|
ExplainOptions |
GqlQuery
The GQL query to run. This query must be a non-aggregation query.
Declaration
[JsonProperty("gqlQuery")]
public virtual GqlQuery GqlQuery { get; set; }
Property Value
Type | Description |
---|---|
GqlQuery |
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.
Declaration
[JsonProperty("partitionId")]
public virtual PartitionId PartitionId { get; set; }
Property Value
Type | Description |
---|---|
PartitionId |
PropertyMask
The properties to return. This field must not be set for a projection query. See LookupRequest.property_mask.
Declaration
[JsonProperty("propertyMask")]
public virtual PropertyMask PropertyMask { get; set; }
Property Value
Type | Description |
---|---|
PropertyMask |
Query
The query to run.
Declaration
[JsonProperty("query")]
public virtual Query Query { get; set; }
Property Value
Type | Description |
---|---|
Query |
ReadOptions
The options for this query.
Declaration
[JsonProperty("readOptions")]
public virtual ReadOptions ReadOptions { get; set; }
Property Value
Type | Description |
---|---|
ReadOptions |