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 columns?: string
readonly columns?: string
Comma-separated list of the properties which should used as columns for the new rows
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 1000 Type options: {"minValue":1,"maxValue":1000}
Default: {}