Responding to action results
React to Mechanic action results using mechanic/actions/perform — build multi-step workflows that inspect HTTP responses, mutation results, and more.
Tasks can react to the results of their own actions by subscribing to the mechanic/actions/perform event topic. This enables multi-step workflows: a task makes an HTTP request, then inspects the response and decides what to do next. Or a task creates a Shopify resource, then uses the returned ID in a follow-up action.
Because actions run asynchronously (like all Mechanic runs), their results aren't available during the Liquid rendering that defined them. Instead, Mechanic delivers action results back to the task as a new event. To use this, add a task subscription to the mechanic/actions/perform event topic. When a task includes this subscription, Mechanic will generate an event with that topic for every action that the task completes. This event will only ever be responded to by the task that generated it; it will never be sent to other tasks.
If you don't need the follow-up event for a particular action (for example, when you know the work is fire-and-forget or you're avoiding loops), set __perform_event: false on that action. The action still runs; Mechanic just skips emitting mechanic/actions/perform for it.
Common use cases:
Evaluating HTTP response codes or payloads
Evaluating the results of Shopify GraphQL mutations
Using content from generated Files
The Echo action does not generate mechanic/actions/perform events.
Inspecting the context
Events with the topic mechanic/actions/perform are, by nature, always child events. As such, their event variable contains a reference to the event's parent. This means a task may use event.parent.data to access all the data that informed the construction of the action in question. (Note that only the previous 5 generations of parents are available.)
A mechanic/actions/perform event also provides task runs with an action variable (containing the same information available in event.data). This variable contains the original action object (including its type, options, and meta information), and data from the run in which the action was performed.
Common sources of information for followup task runs:
action.options— the original options defined for the actionaction.run.ok—trueorfalse, indicating the action's successaction.run.result— the value (if any) generated by the action runaction.run.error— the error (if any) raised during the action runaction.meta— the meta information given in the action's definition
It's important to specifically account for the mechanic/actions/perform topic when writing task code, minding the fact that improper composition could result in an infinite loop.
Mechanic will step in and forcibly fail subsequent task runs that contain results identical to their predecessors.
Example
This example cycles between three different modes of operation, depending on the meta information recorded in the action definition. And, by checking on action.run.ok at the very beginning, the task is also able to "break" into failure-handling mode, in which an email is sent to an administrator.
Subscriptions
Code
Last updated
Was this helpful?