itemBookSearch Query
Description
Searches for books using external book databases (Google Books and ISBNdb) by search term.
query itemBookSearch($term: String!) {
itemBookSearch(term: $term) {
google {
title
subtitle
publisher
authors
language
thumb
pageCount
description
}
isbndb {
title
subtitle
publisher
authors
language
thumb
pageCount
description
}
}
}
Variables
{
"term": "term"
}
Response
{
"itemBookSearch": {
"google": [
{
"title": "example",
"subtitle": "example",
"publisher": "example",
"authors": [
"example"
],
"language": "example",
"thumb": "example",
"pageCount": 42,
"description": "example"
}
],
"isbndb": [
{
"title": "example",
"subtitle": "example",
"publisher": "example",
"authors": [
"example"
],
"language": "example",
"thumb": "example",
"pageCount": 42,
"description": "example"
}
]
}
}
Arguments
| Name | Type | Description |
|---|---|---|
term | String! | Search term to match against book titles, authors, ISBNs, or other metadata. |