UNPKG

@azuro-org/toolkit

Version:

This framework-agnostic package provides essential utilities for building applications on the Azuro Protocol.

47 lines (46 loc) 1.19 kB
import * as Types from './types'; export type GameQueryVariables = Types.Exact<{ id: Types.Scalars['ID']['input']; }>; export type GameQuery = { __typename?: 'Query'; game?: { __typename?: 'Game'; id: string; gameId: string; slug: string; title: string; startsAt: string; state: Types.GameState; turnover: string; sport: { __typename?: 'Sport'; sportId: string; slug: string; name: string; sporthub: { __typename?: 'SportHub'; id: string; slug: string; }; }; league: { __typename?: 'League'; id: string; slug: string; name: string; }; country: { __typename?: 'Country'; id: string; slug: string; name: string; }; participants: Array<{ __typename?: 'Participant'; image?: string | null; name: string; }>; } | null; }; export declare const GameDocument: import("graphql/language/ast").DocumentNode;