UNPKG

@azuro-org/toolkit

Version:

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

51 lines (50 loc) 1.42 kB
import * as Types from './types'; export type GamesQueryVariables = Types.Exact<{ first?: Types.InputMaybe<Types.Scalars['Int']['input']>; skip?: Types.InputMaybe<Types.Scalars['Int']['input']>; where: Types.Game_Filter; orderBy?: Types.InputMaybe<Types.Game_OrderBy>; orderDirection?: Types.InputMaybe<Types.OrderDirection>; }>; export type GamesQuery = { __typename?: 'Query'; games: Array<{ __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; }>; }>; }; export declare const GamesDocument: import("graphql/language/ast").DocumentNode;