LocalizedBook
A book as it appears in one specific translation, with its localized name and chapter structure
type LocalizedBook {
bookId: String!
chapterCount: Int!
chapters: [Chapter!]!
name: String!
position: Int!
testament: String!
}
Fields
LocalizedBook.bookId ● String! non-null scalar
Unique book identifier (e.g. 'MAT', 'GEN')
LocalizedBook.chapterCount ● Int! non-null scalar
Number of chapters in this book for the translation
LocalizedBook.chapters ● [Chapter!]! non-null object
All chapters in this book
LocalizedBook.name ● String! non-null scalar
Localized book name for the translation
LocalizedBook.position ● Int! non-null scalar
Canonical order position (1-66)
LocalizedBook.testament ● String! non-null scalar
Testament: 'OT' or 'NT'
Returned By
bibleIndex query
Member Of
Translation object