listGames()

in source/webapp/src/graphql/queries.js [703:829]


    listGames(filter: $filter, limit: $limit, nextToken: $nextToken) {
      items {
        id
        stage {
          id
          startDate
          endDate
          name
          sequence
          season {
            id
            name
            year
            competitionId
            startDate
            endDate
            status
            createdAt
            updatedAt
          }
          seasonId
          games {
            nextToken
          }
          createdAt
          updatedAt
        }
        stageId
        plannedKickoffTime
        venue {
          id
          name
          capacity
          city
          country
          surface
          roofType
        }
        home {
          id
          name
          country
          countryCode
          alias
        }
        away {
          id
          name
          country
          countryCode
          alias
        }
        gameStatus {
          status
          clock
          clockStoppageAnnounced
          clockStoppagePlayer
          winner {
            id
            name
            country
            countryCode
            alias
          }
          aggregateAwayScore
          aggregateHomeScore
          aggregateWinner {
            id
            name
            country
            countryCode
            alias
          }
          awayNormaltimeScore
          awayOvertimeScore
          awayScore
          homeNormaltimeScore
          homeOvertimeScore
          homeScore
          possession
          location
          play
          sections {
            awayScore
            homeScore
            sequence
            name
            type
            stats
          }
        }
        scoringDrives {
          scoreName
          score
          playsCount
          duration
          quarter
          gain
          penalty
          team {
            id
            name
            country
            countryCode
            alias
          }
        }
        events {
          items {
            id
            gameId
            type
            clock
            homeScore
            awayScore
            commentary
            createdAt
            updatedAt
          }
          nextToken
        }
        stats
        createdAt
        updatedAt
      }
      nextToken
    }