interface StrapiNodeParameters {
authentication?: "password" | "token";
columns?: string;
contentType?: string;
entryId?: string;
limit?: number;
operation?:
| "create"
| "get"
| "getAll"
| "update"
| "delete";
options?: {
publicationState?: "live"
| "preview";
sort?: string;
where?: string;
};
resource?: "entry";
returnAll?: boolean;
updateKey?: string;
}Properties§
§§§§§§§§§
readonly authentication?: "password" | "token"§
readonly columns?: stringComma-separated list of the properties which should used as columns for the new rows
readonly content Type?: stringName of the content type
readonly entry Id?: stringThe ID of the entry to delete
readonly limit?: numberMax number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}
readonly operation?: "create" | "get" | "getAll" | "update" | "delete"Default: "get"
readonly options?: { ... }Default: {}
readonly resource?: "entry"Default: "entry"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly update Key?: stringName of the property which decides which rows in the database should be updated. Normally that would be "id". Default: "id"
Default: "password"