Skip to content

Latest commit

 

History

History
44 lines (37 loc) · 930 Bytes

File metadata and controls

44 lines (37 loc) · 930 Bytes

Query Parser

Parse a query string into name/value pairs

Installation

flogo install github.com/retgits/flogo-components/activity/queryparser

Link for flogo web:

https://github.com/retgits/flogo-components/activity/queryparser

Schema

Inputs and Outputs:

{
    "inputs": [
        {
            "name": "query",
            "type": "string",
            "required": true
        }
    ],
    "outputs": [
        {
            "name": "result",
            "type": "any"
        }
    ]
}

Inputs

Input Description
query The query string you want to parse

Ouputs

Output Description
result A map[string]interface{} containing the parsed data