What is the proper way to query (for example an account) based on name when the name in SF could have an apostrophe (for example Joe's Pizza)? My issue is that I need to match to my payload based on name alone and sometimes the names may have an apostrophe and sometimes not. I'm confused on if I should be using {{}} or {{{}}}.
Example for Joe's Pizza:
SELECT
Id,
Name
FROM
Account
WHERE
RecordTypeID = '012Hp000001357OIAQ'
AND
Name = '{{record.PlanInformation.Group}}'
Based on the above with double brackets is produces:
Should I be using triple brackets here? Will this work for names that don't have an apostrophe?