We have data that includes values that contain apostrophes. When using the Arcade FeatureSetByRelationshipName function is fails because the sql query where clause that is created is structured like this:
name = 'Billy Bob's Cavern'
The single apostrophe in the value needs to be escaped by a second apostrophe to be an expectable where clause:
name = 'Billy Bob''s Cavern'
Can the FeatureSetByRelationshipName be updated to account for this situation? Is there another way to handle this short of changing the value to remove the apostrophe?