Documentation
    Preparing search index...

    Type Alias ListTeamsQuery

    type ListTeamsQuery = {
        listTeams?:
            | (
                | {
                    __typename: "Team";
                    ID: number;
                    Name?: string
                    | null;
                    Sport?: string | null;
                }
                | null
            )[]
            | null;
    }
    Index

    Properties

    Properties

    listTeams?:
        | (
            | {
                __typename: "Team";
                ID: number;
                Name?: string
                | null;
                Sport?: string | null;
            }
            | null
        )[]
        | null