Returns parsed object where the first argument equals a given string.
QUERYSTRING_PARSE(queryString: string)
parsedObject: object
QUERYSTRING_PARSE("key1=value1") Return value: {"key1":"value1"}
Returns the first argument as a serialized query string.
QUERYSTRING_SERIALIZE(query: object, skipNulls?: boolean)
queryString: string
Last updated 4 years ago
Was this helpful?
QUERYSTRING_SERIALIZE({key1: "apples pears", key2: null}, true) Return value: "key1=apples%20pears"