Hey everyone.
I’m having an issue with the Salesforce Module using SOQL and I’m hoping you might be able to help with. I have a SOQL that usually works:
SELECT FIELDS(ALL) FROM OpportunityLineItem WHERE OpportunityId = ‘OpportunityId’ AND Product_type__c = ‘New’ AND Product__c = ‘toString(Product__c)’
OpportunityId and Product_c are coming through correctly.
However, when the Product_c is ‘Example Product(‘Cash PB’)’ it returns an error unexpected token: ‘Cash’ so I’m assuming it doesn’t like the '. Do you know of a way with this API we can allow special characters?
Thank you