OBJECT
FlowOutputStep
A flow output step
link GraphQL Schema definition
- type FlowOutputStep {
- # Unique identifier used by the metadata API
- ID! :
- # Name shown in server and desktop clients
- String :
- # Identifier internal to flow
- String :
- # Fields output by this step
- #
- # Arguments
- # filter: Filter by GraphQL field and given value
- # orderBy: Sort by given fields. The sort orders defined first in
- # the list will take priority. If there are no given sort orders or a tie on the
- # final sorted field then the resulting set will be sorted by ID in ascending
- # order.
- # permissionMode: Results filtering mode.
- (
- FlowOutputField_Filter, :
- FlowOutputFieldSortOrder, :
- PermissionMode :
- ): [FlowOutputField!]!
- # Fields output by this step
- #
- # Arguments
- # after: The cursor to receive the next page of objects. If no
- # cursor is supplied it will start at the beginning of the list. Offset can not be
- # set at the same time. This is the preferred API to use if possible as it is
- # faster.
- # first: Maximum number of objects to be returned in a page. The
- # default is 100
- # offset: The number of entries to offset the start of the page
- # by. If no offset is supplied it will start at the beginning of the list. After
- # can not be set at the same time.
- # filter: Filter by GraphQL field and given value
- # orderBy: Sort by given fields. The sort orders defined first in
- # the list will take priority. If there are no given sort orders or a tie on the
- # final sorted field then the resulting set will be sorted by ID in ascending
- # order.
- # permissionMode: Results filtering mode.
- (
- String, :
- Int, :
- Int, :
- FlowOutputField_Filter, :
- FlowOutputFieldSortOrder, :
- PermissionMode :
- ): FlowOutputFieldsConnection
- # The flow that contains this output step
- Flow :
- }
link Require by
- FlowFlows are used to prepare data, which can include aggregation, cleaning, preprocessing, etc.
- FlowColumnOutputFieldColumn output field implementation
- FlowFieldOutputFieldField output field implementation
- FlowOutputFieldA wrapper for an output field contained in a published flow.
- FlowOutputStepsConnectionConnection Type for FlowOutputStep
- QueryQuery root for Metadata GraphQL interface