Frederic G. MARAND 62cb217de9 Original version from Abhi Aiyer. | преди 7 години | |
---|---|---|
.. | ||
.babelrc | преди 7 години | |
.gitignore | преди 7 години | |
LICENSE.txt | преди 7 години | |
README.md | преди 7 години | |
index.js | преди 7 години | |
package.json | преди 7 години | |
schema.js | преди 7 години | |
swapi.js | преди 7 години | |
yarn.lock | преди 7 години |
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.