interface StackbyNodeParameters {
additionalFields?: { view?: string };
columns?: string;
id?: string;
limit?: number;
operation?: "list" | "delete" | "append" | "read";
returnAll?: boolean;
stackId?: string;
table?: string;
}
Properties§
§
§
§
§
§
§
§
§
readonly additional Fields?: { ... }
readonly columns?: string
Comma-separated list of the properties which should used as columns for the new rows
readonly id?: string
ID of the record to return
readonly limit?: number
Max number of results to return Default: 1000 Type options: {"minValue":1,"maxValue":1000}
readonly operation?: "list" | "delete" | "append" | "read"
Default: "append"
readonly return All?: boolean
Whether to return all results or only up to a given limit Default: true
readonly stack Id?: string
The ID of the stack to access
readonly table?: string
Enter Table Name
Default: {}