An open API service indexing awesome lists of open source software.

https://github.com/mutalis/graphql-goodreads

Goodreads Graphql API
https://github.com/mutalis/graphql-goodreads

api-client graphql javascript nodejs

Last synced: 5 months ago
JSON representation

Goodreads Graphql API

Awesome Lists containing this project

README

          

# Goodreads Graphql API

## Queries

Url: http://localhost:3000/graphql

```
{
author(id: 23) {
name,
books {
title,
isbn
}
}
}
```
```
{
author(id: 23) {
name,
books {
title,
isbn,
authors {
name
}
}
}
}
```

```
{
author(id: 23) {
name,
books {
title,
isbn,
authors {
name,
books {
title,
authors {
name
}
}
}
}
}
}
```