Class RunQueryRequest
The request for Datastore.RunQuery.
Inheritance
System.Object
RunQueryRequest
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.dll
Syntax
public class RunQueryRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
GqlQuery
The GQL query to run.
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 |
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 |
Implements
Google.Apis.Requests.IDirectResponseSchema