interface StoryblokNodeParameters {
filters?: { starts_with?: string };
identifier?: string;
limit?: number;
operation?:
| "get"
| "getAll"
| "delete"
| "publish"
| "unpublish";
options?: { language?: string; releaseId?: string };
resource?: "story";
returnAll?: boolean;
source?: "contentApi" | "managementApi";
space?: string;
storyId?: string;
}
Properties§
Source§readonly limit?: number
readonly limit?: number
Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}
Source§readonly source?: "contentApi" | "managementApi"
readonly source?: "contentApi" | "managementApi"
Pick where your data comes from, Content or Management API Default: "contentApi"
Source§readonly space?: string
readonly space?: string
The name of the space. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getSpaces"}
Default: {}