Interface AdaloNodeParameters

Source
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 collectionId?: string

Open your Adalo application and click on the three buttons beside the collection name, then select API Documentation

Source§

readonly dataToSend?: "autoMapInputData" | "defineBelow"

Whether to insert the input data this node receives in the new row Default: "defineBelow"

Source§

readonly fieldsUi?: { 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 inputsToIgnore?: string

List of input properties to avoid sending, separated by commas. Leave empty to send all properties.

Source§

readonly limit?: number

Max number of results to return Default: 100 Type options: {"minValue":1,"maxValue":100}

Source§

readonly operation?: "create" | "get" | "getAll" | "update" | "delete"

Default: "getAll"

Source§

readonly resource?: "collection"

Default: "collection"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly rowId?: string