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§
Source§readonly additional Options?: {
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;
}
readonly additional Options?: {
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;
}
Source§readonly database Id?: string
readonly database Id?: string
Database to operate on. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getDatabaseIds"}
Source§readonly data To Send?: "autoMapInputData" | "defineBelow"
readonly data To Send?: "autoMapInputData" | "defineBelow"
Whether to insert the input data this node receives in the new row Default: "defineBelow"
Source§readonly fields Ui?: { fieldValues: { fieldId?: string; fieldValue?: string }[] }
readonly fields Ui?: { fieldValues: { fieldId?: string; fieldValue?: string }[] }
Default: {} Type options: {"multipleValueButtonText":"Add Field to Send","multipleValues":true}
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,"maxValue":100}
Source§readonly table Id?: string
readonly table Id?: string
Table to operate on. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsDependsOn":["databaseId"],"loadOptionsMethod":"getTableIds"}
Default: {}