Skip to main content

Passage

A resolved range of verses, returned by the passage and verseOfTheDay queries

type Passage {
reference: String!
text: String!
translationId: String!
translationName: String!
translationNote: String
verses: [Verse!]!
}

Fields

Passage.reference ● String! non-null scalar

The reference in normalized form. Localized input keeps its own book name (e.g. 'Juan 3:16').

Passage.text ● String! non-null scalar

All verse texts joined with newlines — convenient for display when you do not need each verse separately

Passage.translationId ● String! non-null scalar

Identifier of the translation this passage came from (e.g. 'eng-web')

Passage.translationName ● String! non-null scalar

Full name of the translation (e.g. 'World English Bible')

Passage.translationNote ● String scalar

Licensing or attribution note for the translation (e.g. 'Public Domain', 'CC BY 4.0')

Passage.verses ● [Verse!]! non-null object

Every verse the reference resolved to, in canonical order

Returned By

passage query ● verseOfTheDay query