Like the question asks. I have a backend workflow that searches my database and returns results. I’d love to re-use that logic in my front end so I don’t have to keep building my search and managing it in two different places.
Is that possible?
Like the question asks. I have a backend workflow that searches my database and returns results. I’d love to re-use that logic in my front end so I don’t have to keep building my search and managing it in two different places.
Is that possible?
You could use the api connector to call the backend flow and access the results in the response
You can schedule API workflow from front end but the tricky thing is that you can’t return data.
If you want to return data from your backend workflow you must add a return data action at the end of it and call it from the API connector.
Then you can call it like any other API call.
Omg YESSSSSS!