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§

§readonly collectionId?: string

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

§readonly dataToSend?: "autoMapInputData" | "defineBelow"

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

§readonly fieldsUi?: { ... }

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 inputsToIgnore?: 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 returnAll?: boolean

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

§readonly rowId?: string