Documentation
    Preparing search index...

    Type Alias DeleteTeamMutation

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

    Properties

    Properties

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