Gridiron Football

In FusionFeed, gridiron football is simply referred to as "football". For association football, see Soccer.

FusionFeed provides full coverage for all NFL games and partial coverage for NCAA games. GraphQL interfaces are leveraged heavily to allow queries to be used for both leagues with little or no modification. At the highest level, data is obtained from the FootballOrganization interface, for which implementions can be obtained via the top level nfl and ncaa fields:

{
nfl {
...footballOrg
}
ncaa {
football(conference: PAC12) {
...footballOrg
}
}
}
# The same fragment can be re-used for both NFL and NCAA.
fragment footballOrg on FootballOrganization {
currentSeason
}

GitHubThis site is open source!

See something that could be improved? Open a pull request on GitHub.

Pull RequestContribute to This Page

On This Page