Firestore v1 API - Class StructuredPipeline (4.1.0)

public sealed class StructuredPipeline : IMessage<StructuredPipeline>, IEquatable<StructuredPipeline>, IDeepCloneable<StructuredPipeline>, IBufferMessage, IMessage

Reference documentation and code samples for the Firestore v1 API 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

Namespace

Google.Cloud.Firestore.V1

Assembly

Google.Cloud.Firestore.V1.dll

Constructors

StructuredPipeline()

public StructuredPipeline()

StructuredPipeline(StructuredPipeline)

public StructuredPipeline(StructuredPipeline other)
Parameter
Name Description
other StructuredPipeline

Properties

Options

public MapField<string, Value> Options { get; }

Optional. Optional query-level arguments.

Property Value
Type Description
MapFieldstringValue

Pipeline

public Pipeline Pipeline { get; set; }

Required. The pipeline query to execute.

Property Value
Type Description
Pipeline