0.0.13 • Published 7 years ago

skaggr-parse v0.0.13

Weekly downloads
4
License
ISC
Repository
github
Last release
7 years ago

skaggr-parse

A JavaScript parser that will take a JSON in skaggr-spec format and output a Qlik expression string

Motivation

See the skaggr-spec README for more details on the thinking behind skaggr-spec. This parser is a tool for taking those specs, which could be produced by automated tools or GUIs, and translating them into strings that can be fed to Qlik for calculations.

Example: Sum of Sales

var mySpec = {
    type: "aggr",
    value: "sum",
    parameters: [
        {
            type: "explicit",
            value: "Sales"
        }
    ]
};

var myExpr = skaggrParse(mySpec); // -> "sum(Sales)"
0.0.13

7 years ago

0.0.12

7 years ago

0.0.11

7 years ago

0.0.10

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago