The lower() function converts all letters within a string to lowercase, leaving other characters unchanged, and returns the modified string.
lower(str)
| Argument | Type | Description |
|---|---|---|
str | String | The string to be modified |
Return type: String
UQLreturn lower("ABc536")
Result: abc536
Retrieve users whose city property values, when converted to lowercase, match "new york".
UQLfind().nodes({lower(@user.city) == "new york"}) as n return n{*}