What can the separator key do? #546
-
In the docs, the separator is used in 2 different ways:
I have 2 questions:
|
Beta Was this translation helpful? Give feedback.
Answered by
dev-embedthis
Jan 25, 2025
Replies: 1 comment 3 replies
-
Those three are all example of one use-case. Value templates are just strings and the "${var}" are not Javascript templates, but rather references to other fields in the model. So: account#${name} will translate to something like: account#Peter ie. ${field} are expanded using the field value supplied in the api. So "-" is nothing special. Just a character in the string. Case is sensitive. |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
evbo
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Those three are all example of one use-case.
Value templates are just strings and the "${var}" are not Javascript templates, but rather references to other fields in the model.
So:
account#${name} will translate to something like: account#Peter
account# is just account#
user-email#$(email} could be user-email#user@example.com
ie. ${field} are expanded using the field value supplied in the api.
So "-" is nothing special. Just a character in the string. Case is sensitive.