Frederic G. MARAND 62cb217de9 Original version from Abhi Aiyer. | 7 years ago | |
---|---|---|
.. | ||
.babelrc | 7 years ago | |
.gitignore | 7 years ago | |
LICENSE.txt | 7 years ago | |
README.md | 7 years ago | |
index.js | 7 years ago | |
package.json | 7 years ago | |
schema.js | 7 years ago | |
swapi.js | 7 years ago | |
yarn.lock | 7 years ago |
A GraphQL endpoint for the Star Wars API, generated from the JSON Schema provided.
Install with:
npm install
Run with:
npm start
Go to the following URL in your browser to see GraphiQL:
Here's an example of a query you can run:
{
people {
name,
starships {
name,
length
}
}
}
The server console will print a list of all of the URLs fetched. Thanks to dataloader, we only request each URL once instead of loading it for each subtree of the query.