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?: string
The ID or slug of the story to get
readonly limit?: number
Max 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?: boolean
Whether 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?: string
The name of the space. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getSpaces"}
readonly story Id?: string
Numeric ID of the story
Default: {}