Skip to main content

Verse

A single verse in one translation

type Verse {
bookId: String!
bookName: String!
chapter: Int!
text: String!
verse: Int!
}

Fields

Verse.bookId ● String! non-null scalar

Canonical three-letter book id (e.g. 'JHN', 'GEN'). Stable across every translation.

Verse.bookName ● String! non-null scalar

Book name localized to this translation (e.g. 'Juan' for Spanish). Falls back to the canonical English name when the translation has no localized name.

Verse.chapter ● Int! non-null scalar

Chapter number, starting at 1

Verse.text ● String! non-null scalar

The verse text as it appears in this translation

Verse.verse ● Int! non-null scalar

Verse number within the chapter, starting at 1

Returned By

chapter query ● randomVerse query ● search query ● verse query

Member Of

Chapter object ● ConcordanceOccurrence object ● Passage object ● SemanticSearchResult object