Query Language - usable variables and columns

Hello everyone,

I’m trying to see what is possible with the query language in the “prefilter records”.
In the documentation, I found in Page blocks that these items are availble :

  • record: current record (when available)
  • recordID: current record’s recordID (when available)
  • ownerID: current record’s owner (when available)
  • userID: current user’s userID

how can we access other record columns in the query language ?
Examples : ${record.column1}, ${record}.column1, ${column1}

Thank you in advance for your help,

Best regards

1 Like

Hello, you can acces the record values through '${record.values.column1}'

Make sure you include the ' because otherwise, it will think the value is a field name.

2 Likes