Salta ai contenuti

Editions

Questi contenuti non sono ancora disponibili nella tua lingua.

Ultimo Aggiornamento   24 giugno 2025

Reference

What is an Edition?

An Edition in Hardcover represents a specific published version of a book. While a book is the conceptual work (e.g., “Pride and Prejudice”), an edition is a particular physical or digital manifestation with specific attributes like ISBN, publisher, format, and release date. Multiple editions of the same book may exist with different publishers, languages, formats, or cover art.

Fields

FieldTypeDescription
idintUnique identifier for the edition
titlestringTitle of this edition
subtitlestringSubtitle of this edition
isbn_10string10-digit ISBN
isbn_13string13-digit ISBN
asinstringAmazon Standard Identification Number
pagesintNumber of pages
audio_secondsintDuration in seconds (for audiobooks)
release_datedateFull release date
release_yearintYear of release
physical_formatstringPhysical format (hardcover, paperback, etc.)
edition_formatstringEdition format information
edition_informationstringAdditional edition details
descriptionstringDescription of this edition
book_idintID of the parent book
publisher_idintID of the publisher
language_idintID of the language
country_idintID of the country of publication
reading_format_idintID of the reading format
image_idintID of the cover image
ratingnumericAverage rating for this edition
users_countintNumber of users who have this edition
users_read_countintNumber of users who have read this edition
lists_countintNumber of lists containing this edition
lockedboolWhether the edition is locked from editing
statestringCurrent state of the edition record
created_attimestampWhen the edition was created
updated_attimestampWhen the edition was last updated
bookBookParent book object
publisherPublisherPublisher object
languageLanguageLanguage object
countryCountryCountry object
reading_formatReadingFormatReading format object
imageImageCover image object
contributionsContribution[]Array of contributor relationships

Related Schemas

Example Queries

Get Edition Details

Retrieve detailed information about a specific edition by ISBN.

Edition Details by ISBN Query
query GetEditionByISBN {
editions(where: {isbn_13: {_eq: "9780547928227"}}) {
id
title
subtitle
isbn_13
isbn_10
asin
pages
release_date
physical_format
publisher {
name
}
book {
id
title
rating
contributions {
author {
name
}
}
}
language {
language
}
reading_format {
format
}
}
}

Get All Editions of a Book

Find all editions of a specific book, showing different formats and publishers.

Book Editions Query
query GetBookEditions {
editions(
where: {book_id: {_eq: 328491}}
order_by: {release_date: desc}
) {
id
title
isbn_13
pages
release_date
physical_format
publisher {
name
}
language {
language
}
reading_format {
format
}
users_count
rating
}
}

Find Editions by Publisher

Get recent editions from a specific publisher.

Publisher Editions Query
query GetPublisherEditions {
editions(
where: {publisher_id: {_eq: 1}}
order_by: {release_date: desc}
limit: 10
) {
id
title
isbn_13
release_date
physical_format
book {
title
rating
contributions {
author {
name
}
}
}
}
}

Search Editions by Format

Find audiobook editions with specific criteria.

Audiobook Editions Query
query GetAudiobookEditions {
editions(
where: {reading_format_id: {_eq: 2}, audio_seconds: {_gt: 0}}
order_by: {users_count: desc}
limit: 10
) {
id
title
asin
audio_seconds
publisher {
name
}
cached_contributors
book {
title
rating
}
}
}