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§
Source§readonly fields To Send?: "autoMapInputData" | "defineBelow"
readonly fields To Send?: "autoMapInputData" | "defineBelow"
Whether to insert the input data this node receives in the new row Default: "defineBelow"
Source§readonly inputs To Ignore?: string
readonly inputs To Ignore?: string
List of input properties to avoid sending, separated by commas. Leave empty to send all properties.
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1}
Source§readonly operation?: "create" | "get" | "getAll" | "update" | "delete"
readonly operation?: "create" | "get" | "getAll" | "update" | "delete"
The operation being performed Default: "create"
Source§readonly options?: {
convert_link_id?: boolean;
direction?: "asc" | "desc";
order_by?: string;
}
readonly options?: {
convert_link_id?: boolean;
direction?: "asc" | "desc";
order_by?: string;
}
Default: {}
Source§readonly return All?: boolean
readonly return All?: boolean
Whether to return all results or only up to a given limit Default: true
Source§readonly table Id?: string
readonly table Id?: string
The name of SeaTable table to access. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getTableIds"}
Source§readonly table Name?: string
readonly table Name?: string
The 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}