Interface N8nTrainingCustomerDatastoreNodeParameters

Source
interface N8nTrainingCustomerDatastoreNodeParameters {
    limit?: number;
    operation?: "getOnePerson" | "getAllPeople";
    returnAll?: boolean;
}

Properties§

Source§

readonly limit?: number

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

Source§

readonly operation?: "getOnePerson" | "getAllPeople"

Default: "getOnePerson"

Source§

readonly returnAll?: boolean

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