Type alias Project

Project: {
    __typename: "Project";
    createdAt: string;
    createdBy?: Entity | null;
    description?: string | null;
    generators?: (Generator | null)[] | null;
    icon?: string | null;
    name: string;
    orgUrn?: string | null;
    releaseCount?: number | null;
    releases?: (Release | null)[] | null;
    resolvers?: (Resolver | null)[] | null;
    sdConfigs?: (SDConfig | null)[] | null;
    sets?: (TokenSet | null)[] | null;
    summary?: ProjectSummary | null;
    themeGroups?: (ThemeGroup | null)[] | null;
    themeOption?: ThemeOption | null;
    tokenCount?: number | null;
    urn: string;
    visibility?: Visibility | null;
}

Type declaration

  • __typename: "Project"
  • createdAt: string
  • Optional createdBy?: Entity | null
  • Optional description?: string | null
  • Optional generators?: (Generator | null)[] | null
  • Optional icon?: string | null
  • name: string
  • Optional orgUrn?: string | null
  • Optional releaseCount?: number | null
  • Optional releases?: (Release | null)[] | null
  • Optional resolvers?: (Resolver | null)[] | null
  • Optional sdConfigs?: (SDConfig | null)[] | null
  • Optional sets?: (TokenSet | null)[] | null
  • Optional summary?: ProjectSummary | null
  • Optional themeGroups?: (ThemeGroup | null)[] | null
  • Optional themeOption?: ThemeOption | null
  • Optional tokenCount?: number | null
  • urn: string
  • Optional visibility?: Visibility | null

Generated using TypeDoc