Documentation Index
Fetch the complete documentation index at: https://www.integrate.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Description
Converts a string field that contains a URL query string (…?key1=value1&key2=value2) to a map of key:value pairs. From the map you can extract fields using the map notation:map#'fieldname'
Syntax
QueryStringToMap(string_expression)
Examples
QueryStringToMap('http://someurl/?origin=135&origin=246&id=321') returns [origin#‘135,246’,id#‘321’] which is a map with two keys: origin and id. Note that the value for origin contains both values from the original query string separated by comma.