interface SeaTableV1NodeParameters {
columnsUi?: {
columnValues: {
columnName?: string;
columnValue?: string;
}[];
};
fieldsToSend?: "autoMapInputData"
| "defineBelow";
filters?: { view_name?: string };
inputsToIgnore?: string;
limit?: number;
operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete";
options?: {
convert_link_id?: boolean;
direction?: "asc"
| "desc";
order_by?: string;
};
resource?: "row";
returnAll?: boolean;
rowId?: string;
tableId?: string;
tableName?: string;
}Properties§
§§§§§§§§§§
readonly columns Ui?: { ... }§
readonly fields To Send?: "autoMapInputData" | "defineBelow"Whether to insert the input data this node receives in the new row Default: "defineBelow"
readonly filters?: { ... }Default: {}
readonly inputs To Ignore?: stringList of input properties to avoid sending, separated by commas. Leave empty to send all properties.
readonly limit?: numberMax number of results to return Default: 50 Type options: {"minValue":1}
readonly operation?: "create" | "get" | "getAll" | "update" | "delete"The operation being performed Default: "create"
readonly options?: { ... }Default: {}
readonly resource?: "row"Default: "row"
readonly return All?: booleanWhether to return all results or only up to a given limit Default: true
readonly row Id?: string§readonly table Id?: stringThe name of SeaTable table to access. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getTableIds"}
readonly table Name?: stringThe name of SeaTable table to access. Choose from the list, or specify the name using an expression. Type options: {"loadOptionsMethod":"getTableNames"}
Add destination column with its value Default: {} Type options: {"multipleValueButtonText":"Add Column to Send","multipleValues":true}