stephencweiss / gatsby-source-xkcd

Gatsby source plugin for building websites with XKCD as a data source
MIT License
0 stars 1 forks source link

Simplify API to make it more accessible #3

Closed stephencweiss closed 4 years ago

stephencweiss commented 4 years ago

The idea of an array of queries is unnecessary.

The different options are that - not queries.

Simplify down to this:

{
      resolve: `gatsby-source-xkcd`,
      options: {
           comicIds: [12, 100] ,
           comicQuantity: 5 ,
           latest: true 
      }
}