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§
Source§readonly columns?: string
readonly columns?: string
Comma-separated list of the properties which should used as columns for the new rows
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}
Default: "password"