interface AdaloNodeParameters {
collectionId?: string;
dataToSend?: "autoMapInputData" | "defineBelow";
fieldsUi?: {
fieldValues: {
fieldId?: string;
fieldValue?: string;
}[];
};
inputsToIgnore?: string;
limit?: number;
operation?: | "create"
| "get"
| "getAll"
| "update"
| "delete";
resource?: "collection";
returnAll?: boolean;
rowId?: string;
}
Properties§
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 }[] }
Field must be defined in the collection, otherwise it will be ignored. If field defined in the collection is not set here, it will be set to null. 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.
Open your Adalo application and click on the three buttons beside the collection name, then select API Documentation