TagoIO SDK for JavaScript and TypeScript
    Preparing search index...

    Interface SQLFunctionInfo

    interface SQLFunctionInfo {
        args: string[];
        description: string;
        example?: string;
        kind: "aggregate" | "session";
        name: string;
    }
    Index

    Properties

    args: string[]
    description: string
    example?: string

    Present only on session functions; carries the COALESCE authoring idiom.

    kind: "aggregate" | "session"
    name: string