interface BaserowNodeParameters {
additionalOptions?: {
filters?: {
fields: {
field?: string;
operator?:
| "boolean"
| "contains"
| "contains_not"
| "date_after"
| "date_before"
| "date_equal"
| "date_equals_month"
| "date_equals_today"
| "date_equals_year"
| "date_not_equal"
| "equal"
| "filename_contains"
| "higher_than"
| "empty"
| "not_empty"
| "link_row_has_not"
| "link_row_has"
| "lower_than"
| "not_equal"
| "single_select_equal"
| "single_select_not_equal";
value?: string;
}[];
};
filterType?: "AND"
| "OR";
order?: {
fields: { direction?: "" | "-"; field?: string }[];
};
search?: string;
};
databaseId?: string;
dataToSend?: "autoMapInputData"
| "defineBelow";
fieldsUi?: {
fieldValues: {
fieldId?: string;
fieldValue?: string;
}[];
};
inputsToIgnore?: string;
limit?: number;
operation?: | "create"
| "get"
| "getAll"
| "update"
| "delete";
resource?: "row";
returnAll?: boolean;
rowId?: string;
tableId?: string;
}Properties§
readonly additional Options?: { ... }readonly database Id?: stringDatabase to operate on. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getDatabaseIds"}
readonly data To Send?: "autoMapInputData" | "defineBelow"Whether to insert the input data this node receives in the new row Default: "defineBelow"
readonly fields Ui?: { ... }Default: {} Type options: {"multipleValueButtonText":"Add Field to Send","multipleValues":true}
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,"maxValue":100}
readonly operation?: "create" | "get" | "getAll" | "update" | "delete"Default: "getAll"
readonly resource?: "row"Default: "row"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly row Id?: stringID of the row to return
readonly table Id?: stringTable to operate on. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsDependsOn":["databaseId"],"loadOptionsMethod":"getTableIds"}
Default: {}