Description
The GraphQL query for football clubs is returning a baseball team in its results.
Query
query {
football {
clubsReady {
slug
name
}
}
}
Issue
The query results include:
{
"slug": "new-york-mets",
"name": "New York Mets"
}
Problem: The New York Mets are a Major League Baseball (MLB) team, not a football/soccer club.
Expected Behavior
The football.clubsReady query should only return football/soccer clubs and should not include teams from other sports.