Query
query WorkflowShareLink($token: String!) {
workflowShareLink(token: $token) {
name
trigger
startStepId
steps {
id
type
name
payload
transitions
positionX
}
}
}Variables
{
"token": "string"
}Response
{
"data": {
"workflowShareLink": {
"name": "string",
"trigger": "string",
"startStepId": "id",
"steps": [
{
"id": "id",
"type": "CONDITION",
"name": "string",
"payload": "string",
"transitions": [
"id"
],
"positionX": 1.5
}
]
}
}
}Queries
workflowShareLink
Fetch a workflow share link by its token. Returns null if no share link with the given token exists.
QUERY
workflowShareLink(token: String!): WorkflowShareLinkArguments
token
String!
required
Returns
name
String!
trigger
String!
JSON-encoded trigger configuration.
startStepId
ID
The ID of the first step to execute, or null if the workflow has no steps.
steps
The steps in the shared workflow.
Query
query WorkflowShareLink($token: String!) {
workflowShareLink(token: $token) {
name
trigger
startStepId
steps {
id
type
name
payload
transitions
positionX
}
}
}Variables
{
"token": "string"
}Response
{
"data": {
"workflowShareLink": {
"name": "string",
"trigger": "string",
"startStepId": "id",
"steps": [
{
"id": "id",
"type": "CONDITION",
"name": "string",
"payload": "string",
"transitions": [
"id"
],
"positionX": 1.5
}
]
}
}
}Was this page helpful?

