Skip to main content

AudiobookMetadata

The metadata associated to an audiobook.

type AudiobookMetadata {
title: String!
isbn: ID!
author: [Person]
readBy: [Person]
cover: Resource
language: LanguageCode
publisher: String!
summary: String
description: String
publishedAt: DateTime
duration: Int
}

Fields

AudiobookMetadata.title ● String! non-null scalar

The title of the audiobook.

AudiobookMetadata.isbn ● ID! non-null scalar

ISBN of the audiobook.

AudiobookMetadata.author ● [Person] list object

Author(s)

AudiobookMetadata.readBy ● [Person] list object

Narrator

AudiobookMetadata.cover ● Resource object

The cover of the publication.

AudiobookMetadata.language ● LanguageCode scalar

Language

AudiobookMetadata.publisher ● String! non-null scalar

Publisher

AudiobookMetadata.summary ● String scalar

A short summary of the content of the publication.

AudiobookMetadata.description ● String scalar

A longer description of the content of the publication.

AudiobookMetadata.publishedAt ● DateTime scalar

At what moment was the publication originally release to the public. If null, the publication date is unknown.

AudiobookMetadata.duration ● Int scalar

Total duration of the audiobook (ms). Null if not known. NOTE: this is different from the sum of the durations of the tracks, i.e. if they have not yet all been added.

Member of

Audiobook object