gatsby-source-nytimes-books-api
Version:
This [GatsyJS](https://gatsbyjs.org) source plugin fetches data from the [NYTimes Books API](https://developer.nytimes.com/docs/books-product/1/overview)
20 lines (18 loc) • 760 B
JavaScript
const getResults = require("./getResults")
const getNamesDatesLists = require("./getNamesDatesLists")
const getToday = require("./getToday")
const getListOverview = require("./getListOverview")
const isObject = require("./isObject")
const getReviews = require("./getReviews")
const getBestSellersHistory = require("./getBestSellersHistory")
const getIdentifier = require("./getIdentifier")
const getLists = require("./getLists")
exports.getResults = getResults
exports.getNamesDatesLists = getNamesDatesLists
exports.getToday = getToday
exports.getListOverview = getListOverview
exports.isObject = isObject
exports.getBestSellersHistory = getBestSellersHistory
exports.getReviews = getReviews
exports.getIdentifier = getIdentifier
exports.getLists = getLists