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§
§
§
§
§
§
§
§
§
§
readonly collection Id?: string
readonly data To Send?: "autoMapInputData" | "defineBelow"
Whether to insert the input data this node receives in the new row Default: "defineBelow"
readonly fields Ui?: { ... }
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}
readonly inputs To Ignore?: string
List of input properties to avoid sending, separated by commas. Leave empty to send all properties.
readonly limit?: number
Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}
readonly operation?: "create" | "get" | "getAll" | "update" | "delete"
Default: "getAll"
readonly resource?: "collection"
Default: "collection"
readonly return All?: boolean
Whether to return all results or only up to a given limit
readonly row Id?: string
Open your Adalo application and click on the three buttons beside the collection name, then select API Documentation