Show / Hide Table of Contents

Class RunQueryResponse

The response for Datastore.RunQuery.

Inheritance
object
RunQueryResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class RunQueryResponse : IDirectResponseSchema

Properties

Batch

A batch of query results. This is always present unless running a query under explain-only mode: RunQueryRequest.explain_options was provided and ExplainOptions.analyze was set to false.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX