Skip to content

Instantly share code, notes, and snippets.

@spinegar
Last active March 3, 2020 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spinegar/9efc3956ea22295faa252c98b9cd6a73 to your computer and use it in GitHub Desktop.
Save spinegar/9efc3956ea22295faa252c98b9cd6a73 to your computer and use it in GitHub Desktop.
custom-resource-query
SELECT Id, Name, CreatedDate
FROM Project__c
WHERE
(Project_Contact__c != null AND Project_Contact__c = "{id}") OR
(Project_Account__c != null AND Project_Account__c = "{parentId}") OR
(Project_Account__c != null AND Project_Account__c = "{id}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment