Package version:

A function for the query compilation.

interface QueryFunction {
    bindingType: string;
    inputs: FunctionInput[];
    name: string;
    output: FunctionOutput;
    type: string;
}

Properties

bindingType: string

The type of the function binding.

inputs: FunctionInput[]

The inputs for the function.

name: string

The name of the function.

An output for the function.

type: string

The type of the function.

Generated using TypeDoc