Workflow Params not Working?

Hi-

Trying to pass an output from a query in an app to a workflow but unclear what to do for test & trigger.

In my mind it should be simple: run query in app, send query1 to workflow, run workflow, return results.

Sorry if I am missing something. Thank you!

The workflow works with test inputs similar to the query would have:

I think because you are passing the object with the key of data you may be working at the wrong level of the startTrigger's output.

Getting your app object might need to be referenced as startTrigger.data['data'] or startTrigger.data.data

you could also change the key you are using for your object, or just pass {{query1.data}} directly without a key since it already contains one in the named RANK object array.