Class WorkflowExecutionCount
- Namespace
- Temporalio.Client
- Assembly
- Temporalio.dll
Representation of a count from a count workflows call.
public class WorkflowExecutionCount
- Inheritance
-
WorkflowExecutionCount
- Inherited Members
Properties
Count
Gets the approximate number of workflows matching the original query. If the query had a group-by clause, this is simply the sum of all the counts in Groups.
public long Count { get; }
Property Value
Groups
Gets the groups if the query had a group-by clause, or empty if not.
public IReadOnlyCollection<WorkflowExecutionCount.AggregationGroup> Groups { get; }