A unified resource to start building your backend with low-code. Dive into triggers, nodes, and step-by-step guidance to jumpstart your workflow creation.
I want the HTTP request to fail after 5 seconds .. there is no setting in the node to support this .... ChatGPS gave me an example using an AbortController but it seems to not work
let queryParamsString = ''; if (queryParams) { queryParamsString = '?' + new URLSearchParams(queryParams).toString(); } logging.log(queryParamsString);
return;
Nothing shows up in the logs ... The node goes green and nothing ...
OK .. so if I run the flow test it seems to run the API call node then if I click on it there is data But ... if I run the API call node directly there is no output and it seems to just hang ...
It's an issue with the individual node testing which we are tracking. For now, you can use the entire flow testing - https://docs.buildship.com/testing#testing-entire-workflows to get and return the result of the API Call you are making.
Regarding the "log output for the output too large to display" it is not an error or issue, we are excluding very large JSON responses in the logs system currently and displaying the above message due to cloud logging limitations. It should work correctly if you connect it with your client (frontend) and send the response. We'll update the limit and will improve the UX around this.