Skip to content

Getting Book Details

Last updated on December 29, 2024

Guide

Getting All Editions of a Book

Example Request

Example Query
query GetEditionsFromTitle {
editions(where: {title: {_eq: "Oathbringer"}}) {
id
title
edition_format
pages
release_date
isbn_10
isbn_13
publisher {
name
}
}
}

Getting Details of a Specific Edition

Example Request

Example Query
query GetSpecificEdition {
editions(where: {id: {_eq: 21953653}}) {
book {
title
release_date
slug
subtitle
contributions {
author {
name
}
}
}
}
}