Represents a tag as it is provided by the GraphQL API.

Export

Tag

interface Tag {
    color?: string;
    deletable?: boolean;
    description?: string;
    factSheetCount?: number;
    id: string;
    name: string;
    status?: TagStatus;
    tagGroup?: TagGroup;
}

Properties

color?: string
deletable?: boolean
description?: string
factSheetCount?: number
id: string
name: string
status?: TagStatus
tagGroup?: TagGroup

Generated using TypeDoc