@playlive/tiltify-graphql
    Preparing search index...

    Interface TiltifyTeam

    Team record as embedded inside a TiltifyTeamMembership on the get_user_by_slug profile response. Carries a single facts(first: 1) edge with the team's total raised — used by the profile page to render a "Member of X (raised $Y)" badge.

    Distinct from @playlive/tiltify-core's REST TiltifyTeam (which mirrors GET /teams/:id and is shaped differently).

    interface TiltifyTeam {
        avatar: TiltifyImage | null;
        description: string;
        facts: { edges: { node: { amountRaised: TiltifyAmount; id: string } }[] };
        id: string;
        memberCount: number;
        name: string;
        slug: string;
        totalAmountRaised: TiltifyAmount;
        usageType: string;
    }
    Index
    avatar: TiltifyImage | null
    description: string
    facts: { edges: { node: { amountRaised: TiltifyAmount; id: string } }[] }
    id: string
    memberCount: number
    name: string
    slug: string
    totalAmountRaised: TiltifyAmount
    usageType: string