We have created a flow trigger that is working correctly with one slight problem.
In the Shopify Flow UI, when trying ‘Add a variable’ for actions. The description for the returned variable is not showing up, e.g. the ‘change’ variable from screenshot in this case. It would be very helpful for our users to see the description. I have also attached the corresponding toml. Hopefully this isn’t a user error on our part.
Instead of putting the description as a field in the TOML file, you can put the description as a comment above the type declaration in the schema.graphql file. For example:
"Represents some kind of change"
type Change {
key: String!
value: String!
}