Hi,
I was binding a field in a collection and noticed that there was a ? after the collection name.

I couldn’t get the workflow to work so I deleted and then recreated it. The workflow works but I was wondering what the question mark meant.
Thanks
Steve
Yaj
2
if you mean something like this
collection?.data?.[0]?.name
It’s javascript optional chaining, it allows to safely accesses nested properties without throwing an error if something is null or undefined.
Joyce
(Joyce)
3
Hey @SynopsisLabs 
The little question mark after collection names, workflows, variables, formulas, etc. is a tooltip.
If you hover over it, you should see the description attached to the collection:
If your collection (or workflow, variable, formula, etc.) doesn’t have a description, you will not see the question mark.
Yaj
4
Oh yea that one, that makes way more sense then what I thought it was.