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?: stringComma-separated list of the properties which should used as columns for the new rows
readonly id?: stringID of the record to return
readonly limit?: numberMax number of results to return Default: 1000 Type options: {"minValue":1,"maxValue":1000}
readonly operation?: "list" | "delete" | "append" | "read"Default: "append"
readonly return All?: booleanWhether to return all results or only up to a given limit Default: true
readonly stack Id?: stringThe ID of the stack to access
readonly table?: stringEnter Table Name
Default: {}