Interface StackbyNodeParameters

Source
interface StackbyNodeParameters {
    additionalFields?: { view?: string };
    columns?: string;
    id?: string;
    limit?: number;
    operation?: "list" | "delete" | "append" | "read";
    returnAll?: boolean;
    stackId?: string;
    table?: string;
}

Properties§

Source§

readonly additionalFields?: { view?: string }

Default: {}

Source§

readonly columns?: string

Comma-separated list of the properties which should used as columns for the new rows

Source§

readonly id?: string

ID of the record to return

Source§

readonly limit?: number

Max number of results to return Default: 1000 Type options: {"minValue":1,"maxValue":1000}

Source§

readonly operation?: "list" | "delete" | "append" | "read"

Default: "append"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit Default: true

Source§

readonly stackId?: string

The ID of the stack to access

Source§

readonly table?: string

Enter Table Name