Class StructuredPipeline
A Firestore query represented as an ordered list of operations / stages. This is considered the top-level
function which plans and executes a query. It is logically equivalent to query(stages, options), but prevents
the client from having to build a function wrapper.
Implements
Inherited Members
Namespace: Google.Apis.Firestore.v1.Data
Assembly: Google.Apis.Firestore.v1.dll
Syntax
public class StructuredPipeline : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Options
Optional. Optional query-level arguments.
Declaration
[JsonProperty("options")]
public virtual IDictionary<string, Value> Options { get; set; }
Property Value
| Type | Description |
|---|---|
| IDictionary<string, Value> |
Pipeline
Required. The pipeline query to execute.
Declaration
[JsonProperty("pipeline")]
public virtual Pipeline Pipeline { get; set; }
Property Value
| Type | Description |
|---|---|
| Pipeline |