Any
Arbitrary JSON value scalar type
Format
Usage
type WorkflowSignal {
id: ID!
name: String!
payload: Any # Can be any JSON value
}
mutation {
createWorkflowSignal(input: {
name: "process_order"
payload: {
"orderId": "12345",
"items": [
{"sku": "ABC", "qty": 2},
{"sku": "XYZ", "qty": 1}
],
"priority": 1,
"rush": true
}
}) {
signal {
id
payload
}
}
}Valid Values
Use Cases
Best Practices
Comparison with Map
See Also
Last updated
Was this helpful?
