Documentation
    Preparing search index...

    Type Alias CreateTeamMutation

    type CreateTeamMutation = {
        createTeam?:
            | {
                __typename: "Team";
                ID: number;
                Name?: string
                | null;
                Sport?: string | null;
            }
            | null;
    }
    Index

    Properties

    Properties

    createTeam?:
        | {
            __typename: "Team";
            ID: number;
            Name?: string
            | null;
            Sport?: string | null;
        }
        | null