You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Score breakdown returns 2 sets of 3 values but should be returning 4 values (hockey games are 3 periods + 1 final score) Below is query used to double check. Consistent across all hockey games.
query GamesBySportGender{
gamesBySportGender(
sport: "Ice Hockey"
gender: "Womens"
){
date
team{
name
}
result
scoreBreakdown
boxScore{
team
period
time
corScore
oppScore
}
}
}