First install dependencies:
$ cd graphql-goodreads
$ npm install
$ node index.js
This implementation exposes this structure (you can use as many properties as you want, more coming!):
query{
author(id: <someId>) {
name,
gender,
hometown,
fans_count,
author_followers_count,
image_url,
books {
title,
isbn,
description
}
}
}
That's all!