Class RunQueryResponse
The response for Datastore.RunQuery.
Implements
Inherited Members
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.dll
Syntax
public class RunQueryResponse : IDirectResponseSchema
Properties
Batch
A batch of query results (always present).
Declaration
[JsonProperty("batch")]
public virtual QueryResultBatch Batch { get; set; }
Property Value
Type | Description |
---|---|
QueryResultBatch |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ExplainMetrics
Query explain metrics. This is only present when the RunQueryRequest.explain_options is provided, and it is sent only once with the last response in the stream.
Declaration
[JsonProperty("explainMetrics")]
public virtual ExplainMetrics ExplainMetrics { get; set; }
Property Value
Type | Description |
---|---|
ExplainMetrics |
Query
The parsed form of the GqlQuery
from the request, if it was set.
Declaration
[JsonProperty("query")]
public virtual Query Query { get; set; }
Property Value
Type | Description |
---|---|
Query |
Transaction
The identifier of the transaction that was started as part of this RunQuery request. Set only when ReadOptions.new_transaction was set in RunQueryRequest.read_options.
Declaration
[JsonProperty("transaction")]
public virtual string Transaction { get; set; }
Property Value
Type | Description |
---|---|
string |