Closed ScottMGerstl closed 5 years ago
Expected: Select Id From User Where Groups__c includes ('Basic')
Select Id From User Where Groups__c includes ('Basic')
Actual: Select Id From User Where Groups__c includes 'Basic'
Select Id From User Where Groups__c includes 'Basic'
Ya, it looks like the type is incorrect. I'll push a fix. Functionality it does work if you pass an array:
https://stackblitz.com/edit/ts-force-query-playground-repo
fixed in 2.6.1
Expected:
Select Id From User Where Groups__c includes ('Basic')
Actual:
Select Id From User Where Groups__c includes 'Basic'