I am trying to orchestrate a GCP workflow to first run a query in Big Query to get some metadata (name & id) that would then be passed to another step in the workflow that starts a dataflow job given those parameters as input.
So step by step I want something like:
- Result = Query("SELECT ID & name from biq query table")
- Start dataflow job: Input(result)
Is this possible or is there a better solution?