BookItemData Object
Description
Detailed data and metadata specific to book items.
Declaration
type BookItemData {
title: String
subtitle: String
authors: [String!]
publisher: String
publishedDate: Date
pageCount: Int
categories: [String!]
maturityRating: String
language: String
format: String
images: [ReleaseImage!]!
industryIdentifiers: [BookIdentifier]
}
Fields
| Name | Type | Description |
|---|---|---|
title | String | Title of the book. |
subtitle | String | Subtitle of the book. |
authors | [String!] | Authors of the book. |
publisher | String | Publisher of the book. |
publishedDate | Date | Publication date of the book. |
pageCount | Int | Number of pages in the book. |
categories | [String!] | Categories the book belongs to. |
maturityRating | String | Maturity rating for the book. |
language | String | Language of the book (ISO 639-1 code). |
format | String | Format description of the book (e.g., "Hardcover", "Paperback"). |
images | [ReleaseImage!]! | Images associated with the book. |
industryIdentifiers ⚠️ | [BookIdentifier] | Industry identifiers for the book (e.g., ISBN, ASIN). ⚠️ Deprecated: use identifiers instead |