Interface StoryblokNodeParameters

Source
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 filters?: { starts_with?: string }

Default: {}

Source§

readonly identifier?: string

The ID or slug of the story to get

Source§

readonly limit?: number

Max number of results to return Default: 50 Type options: {"minValue":1,"maxValue":100}

Source§

readonly operation?: "get" | "getAll" | "delete" | "publish" | "unpublish"

Default: "get"

Source§

readonly options?: { language?: string; releaseId?: string }

Default: {}

Source§

readonly resource?: "story"

Default: "story"

Source§

readonly returnAll?: boolean

Whether to return all results or only up to a given limit

Source§

readonly source?: "contentApi" | "managementApi"

Pick where your data comes from, Content or Management API Default: "contentApi"

Source§

readonly space?: string

The name of the space. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getSpaces"}

Source§

readonly storyId?: string

Numeric ID of the story