OBJECT

cvVerseElement

link GraphQL Schema definition

  • type cvVerseElement {
  • # The zero-indexed number of the block where the verse starts
  • startBlock: Int
  • # The zero-indexed number of the block where the verse ends
  • endBlock: Int
  • # The zero-indexed position of the item where the verse starts
  • startItem: Int
  • # The zero-indexed position of the item where the verse ends
  • endItem: Int
  • # The value of nextToken at the beginning of the verse
  • nextToken: Int
  • # The verse range for this verse as it would be printed in a Bible
  • verseRange: String
  • # A list of items for this verse
  • #
  • # Arguments
  • # includeContext: If true, adds scope and nextToken information
  • # to each token
  • items(includeContext: Boolean): [Item]!
  • # The items as a string in a compact eyeballable format
  • dumpItems: String
  • # A list of tokens for this verse
  • #
  • # Arguments
  • # includeContext: If true, adds scope and nextToken information
  • # to each token
  • # withChars: Return tokens whose payload is an exact match to one
  • # of the specified strings
  • # withSubTypes: Return tokens with one of the specified subTypes
  • tokens(includeContext: Boolean, withChars: [String!], withSubTypes: [String!]): [Item]!
  • # The text of the verse as a single string
  • #
  • # Arguments
  • # normalizeSpace: If true, converts each whitespace character to
  • # a single space
  • text(normalizeSpace: Boolean): String!
  • }