Filtering the data

I want to filter the data on the basis of condition.
For example: I am integrating the salesforce and wants to get the leads greater than that date how can add the “where condition” before fetching the data.

There is currently sadly no official way to do that. What should/cloud work is if you “missuse” the “fields” field. Currently it adds them simply between SELECT and FROM Leads. Do not know how the Salesforce queries work but something similar to this could work:

id,company,firstname,lastname,email,status,WHERE id=1

Looks like a query operation where you can add the Salesforce Object Query Language (SOQL) would be handy.

1 Like