@triply/triplydb
    Preparing search index...

    Interface StoryInfo

    interface StoryInfo {
        accessLevel: AccessLevel;
        bannerUrl?: string;
        content: StoryElement[];
        createdAt: string;
        displayName?: string;
        id: string;
        link: string;
        name: string;
        owner: AccountInfo;
        tags?: string[];
        updatedAt: string;
    }
    Index
    accessLevel: AccessLevel

    Who can reach this — see AccessLevel.

    bannerUrl?: string

    Image shown across the top of the story.

    content: StoryElement[]

    The paragraphs and queries the story is built from, in the order they are shown.

    createdAt: string

    When this was created.

    displayName?: string

    Title shown in the interface, free of the restrictions that apply to name.

    id: string

    Stable identifier, unchanged by renames.

    link: string

    The story's own URL, for linking to it.

    name: string

    Short name, unique within the owning account and part of the story's URL.

    The user or group that owns this story.

    tags?: string[]

    Free-form labels, used for filtering and search.

    updatedAt: string

    When this was last changed, including its metadata.