List HHD flows
HHD Flows
List HHD flows
Retrieve handheld device (HHD) flows using GraphQL. Supports filtering by code, name, type, implementation, and default status. (HHD flows are known internally as RF flows.)
POST
List HHD flows
Query Structure
Note: HHD flows are exposed under therf_flowsGraphQL field andRfFlowFilterTypefilter type.
Filter Argument
All filters are passed inside thefilter argument. Each field accepts an input object with operators.
Available Filters
| Filter | Input Type | Operators | Description |
|---|---|---|---|
code | StringInputType | eq, ilike, like, in, between | Flow code |
name | StringInputType | eq, ilike, like, in, between | Flow name |
flow_type | FlowTypeInputType | eq | standard, task, or loading |
implementation_id | IdInputType | eq, in, filled | HHD implementation |
implementation_code | StringInputType | eq, ilike, like, in, between | HHD implementation code |
is_default | BooleanInputType | eq | Default flow status |
slug | StringInputType | eq, ilike, like, in, between | Flow slug |
Authorizations
OAuth 2.0 authentication. Use the client credentials or authorization code flow to obtain an access token.
The subdomain/tenant name identifying which tenant's data to access. Required for all API requests.
Body
application/json
GraphQL query string
Example:
"query($filter: RfFlowFilterType) { rf_flows { all(filter: $filter) { edges { node { id code name flow_type is_default slug implementation_id created_at } } } } }"
Query variables including the filter object
Example:
{
"filter": { "flow_type": { "eq": "standard" } }
}
