Type alias ProjectQuery

ProjectQuery: {
    project?: {
        __typename: "Project";
        createdAt: string;
        createdBy: {
            __typename: "User";
            description?: string | null;
            givenName?: string | null;
            icon?: string | null;
            name?: string | null;
            urn?: string | null;
            visibility?: Visibility | null;
        } | {
            __typename: "APIKeyIdentity";
            name?: string | null;
            urn?: string | null;
        } | null;
        description?: string | null;
        generators?: ({
            __typename: "Generator";
            createdAt?: string | null;
            description?: string | null;
            graph?: string | null;
            name?: string | null;
            updatedAt?: string | null;
            urn?: string | null;
        } | null)[] | null;
        icon?: string | null;
        name: string;
        orgUrn?: string | null;
        releaseCount?: number | null;
        releases?: ({
            __typename: "Release";
            createdAt?: string | null;
            description?: string | null;
            name: string;
            urn: string;
            version: string;
        } | null)[] | null;
        resolvers?: ({
            __typename: "Resolver";
            createdAt?: string | null;
            description?: string | null;
            graph?: string | null;
            name?: string | null;
            updatedAt?: string | null;
            urn?: string | null;
        } | null)[] | null;
        sdConfigs?: ({
            __typename: "SDConfig";
            config?: string | null;
            createdAt: string;
            default?: boolean | null;
            functions?: string | null;
            name: string;
            projectUrn: string;
            themeOptions?: string | null;
            updatedAt: string;
            urn: string;
        } | null)[] | null;
        sets?: ({
            __typename: "TokenSet";
            createdAt?: string | null;
            generatorUrn?: string | null;
            name?: string | null;
            orderIndex?: string | null;
            projectUrn?: string | null;
            type?: TokenSetType | null;
            urn?: string | null;
        } | null)[] | null;
        themeGroups?: ({
            __typename: "ThemeGroup";
            createdAt: string;
            name: string;
            projectUrn?: string | null;
            updatedAt: string;
            urn: string;
        } | null)[] | null;
        themeOption?: {
            __typename: "ThemeOption";
            figmaStyleReferences?: string | null;
            figmaVariableReferences?: string | null;
            name: string;
            selectedTokenSets?: string | null;
            urn: string;
        } | null;
        tokenCount?: number | null;
        urn: string;
        visibility?: Visibility | null;
    } | null;
}

Type declaration

  • Optional project?: {
        __typename: "Project";
        createdAt: string;
        createdBy: {
            __typename: "User";
            description?: string | null;
            givenName?: string | null;
            icon?: string | null;
            name?: string | null;
            urn?: string | null;
            visibility?: Visibility | null;
        } | {
            __typename: "APIKeyIdentity";
            name?: string | null;
            urn?: string | null;
        } | null;
        description?: string | null;
        generators?: ({
            __typename: "Generator";
            createdAt?: string | null;
            description?: string | null;
            graph?: string | null;
            name?: string | null;
            updatedAt?: string | null;
            urn?: string | null;
        } | null)[] | null;
        icon?: string | null;
        name: string;
        orgUrn?: string | null;
        releaseCount?: number | null;
        releases?: ({
            __typename: "Release";
            createdAt?: string | null;
            description?: string | null;
            name: string;
            urn: string;
            version: string;
        } | null)[] | null;
        resolvers?: ({
            __typename: "Resolver";
            createdAt?: string | null;
            description?: string | null;
            graph?: string | null;
            name?: string | null;
            updatedAt?: string | null;
            urn?: string | null;
        } | null)[] | null;
        sdConfigs?: ({
            __typename: "SDConfig";
            config?: string | null;
            createdAt: string;
            default?: boolean | null;
            functions?: string | null;
            name: string;
            projectUrn: string;
            themeOptions?: string | null;
            updatedAt: string;
            urn: string;
        } | null)[] | null;
        sets?: ({
            __typename: "TokenSet";
            createdAt?: string | null;
            generatorUrn?: string | null;
            name?: string | null;
            orderIndex?: string | null;
            projectUrn?: string | null;
            type?: TokenSetType | null;
            urn?: string | null;
        } | null)[] | null;
        themeGroups?: ({
            __typename: "ThemeGroup";
            createdAt: string;
            name: string;
            projectUrn?: string | null;
            updatedAt: string;
            urn: string;
        } | null)[] | null;
        themeOption?: {
            __typename: "ThemeOption";
            figmaStyleReferences?: string | null;
            figmaVariableReferences?: string | null;
            name: string;
            selectedTokenSets?: string | null;
            urn: string;
        } | null;
        tokenCount?: number | null;
        urn: string;
        visibility?: Visibility | null;
    } | null

Generated using TypeDoc