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§
§§§§§§§§§
readonly filters?: { ... }§
readonly identifier?: stringThe ID or slug of the story to get
readonly limit?: numberMax number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}
readonly operation?: "get" | "getAll" | "delete" | "publish" | "unpublish"Default: "get"
readonly options?: { ... }Default: {}
readonly resource?: "story"Default: "story"
readonly return All?: booleanWhether to return all results or only up to a given limit
readonly source?: "contentApi" | "managementApi"Pick where your data comes from, Content or Management API Default: "contentApi"
readonly space?: stringThe name of the space. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getSpaces"}
readonly story Id?: stringNumeric ID of the story
Default: {}