Frederic G. MARAND 62cb217de9 Original version from Abhi Aiyer. | před 7 roky | |
---|---|---|
.. | ||
.babelrc | před 7 roky | |
.gitignore | před 7 roky | |
LICENSE.txt | před 7 roky | |
README.md | před 7 roky | |
index.js | před 7 roky | |
package.json | před 7 roky | |
schema.js | před 7 roky | |
swapi.js | před 7 roky | |
yarn.lock | před 7 roky |
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.