gatsby-source-nba

2.0.10 • Public • Published

gatsby-source-nba

Source plugin for pulling data into Gatsby from NBA API

Features

  • Provides information about NBA Players pulling the data from the NBA API

Install

npm install --save gatsby-source-nba

How to use

// In your gatsby-config.js
plugins: [
  {
    resolve: 'gatsby-source-nba',
  },
];

How to query

You can query nodes created from the NBA API using GraphQL like the following:

Note: Learn to use the GraphQL tool and Ctrl+Spacebar at http://localhost:3000/___graphql to discover the types and properties of your GraphQL model.

{
  allNbaPlayer {
    edges {
      node {
        id
        firstName
        lastName
      }
    }
  }
}

TO-DO

  • Complete player infor with statistics and team information

  • Add teams information + roster

  • Make the plugin configurable to choose with info you want to get pulled by the API.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.10
    9
    • latest

Version History

Package Sidebar

Install

npm i gatsby-source-nba

Weekly Downloads

19

Version

2.0.10

License

MIT

Unpacked Size

6.49 kB

Total Files

6

Last publish

Collaborators

  • qmateub