$$raw
Returns the input as-is without interpreting transformers
Usage​
{
"$$raw": /* Value to return as-is */
}
"$$raw:{input}"
Returns​
Same type as input
Arguments​
Argument | Type | Values | Required / Default Value | Description |
---|---|---|---|---|
Primary | any | Yes | Value to return as-is |
Examples​
Input
Definition
Output
"true"
{
"$$raw": "$$boolean:$"
}
"$$boolean:$"
"true"
{
"$$raw": {
"$$first": [
"$",
1
]
}
}
{
"$$first": [
"$",
1
]
}
"true"
{
"$$raw": [
"$",
"$$boolean:$",
{
"$$first": [
"$",
1
]
}
]
}
[
"$",
"$$boolean:$",
{
"$$first": [
"$",
1
]
}
]
"true"
"$$raw:$$boolean:$"
"$$boolean:$"
null
"$$raw:$.x"
"$.x"