concat
Full name: taxi.stdlib.concat
Signature
declare function concat(Any...):StringDescription
Joins all provided values into a single string, in the order they are passed. Null values are omitted.
find { person: Person } as {
fullName: String = concat(person.firstName, ' ', person.lastName)
}Examples
Concatenates multiple string values into a single string.
Try it out
Schema
Query Plan
Play with this snippet by editing it here, or edit it on Taxi Playground
Result
Query failed