This is a GraphQL wrapper for the ShortBoxed API. ShortBoxed API is a simple and free api to help retrieve and query new comic book day data.
type Comic {
publisher: String
description: String
title: String
price: String
creators: String
releaseDate: String
diamondId: String
}
new: [Comic]
Returns this weeks current new releases
previous: [Comic]
Returns last weeks new releases
future: [Comic]
Returns next weeks new releases
releaseDate(releaseDate: String!): [Comic]
Fetch data for titles with a specific release date
comic(diamondId: String): Comic
Fetch data for a specific diamond id
search(
releaseDate: String
publisher: String
title: String
creators: String
): [Comic]
Search new comic book releases
releases: [String]!
Fetch all available release dates
- Run
npm install
to install dependencies - Run
npm start
to start server athttp://localhost:4000/