Hi. community, I’ve question about how to access f...
# ask-community
x
Hi. community, I’ve question about how to access flow result while use sdk run_deployment? 😞
n
hi @xin li its like
Copy code
flow_run = run_deployment(...)
print(flow_run.state.result())
where you must have
persist_result=True
on the flow run that you're trying to access the result for
👍 1