Show / Hide Table of Contents

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.

Inheritance
object
StructuredPipeline
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.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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX