How Can I Fetch Only the 5th Line from a Query to Match the Company String?

I apologize for the confusion. Pipedream has a default timeout of 5 minutes for each step in a workflow. Since you want to sleep for 15 minutes, the code I provided earlier will not work due to the timeout limitation. Instead, you can use the built-in Pipedream Scheduler trigger to run your workflow every 15 minutes. This way, you don’t need to include a sleep function in your code, and the workflow will execute every 15 minutes as desired. To set up a Scheduler trigger: 1. Create a new workflow. 2. Click on the “+” button to add a new trigger. 3. Search for “Scheduler” and select the “Cron Scheduler” trigger. 4. Set the cron expression to **/15 ** ** ** * to run the workflow every 15 minutes. 5. Add the rest of your workflow steps after the Scheduler trigger. This approach will avoid the timeout issue and execute your workflow every 15 minutes.