OBJECT

diffRecord

A record in a diff report

link GraphQL Schema definition

  • type diffRecord {
  • # The chapter number
  • chapter: Int
  • # The verse number
  • verse: Int
  • # The type of difference for this verse
  • diffType: String!
  • # The items for this verse from the first document
  • items1: [Item!]
  • # The items for this verse from the second document
  • items2: [Item!]
  • # The tokens for this verse from the first document
  • tokens1: [Item!]
  • # The tokens for this verse from the second document
  • tokens2: [Item!]
  • # The text for this verse from the first document
  • text1: String
  • # The text for this verse from the second document
  • text2: String
  • # A string showing the diff of the words in this verse
  • wordsDiff: String
  • # A string showing the diff of the tokens in this verse (including punctuation and
  • # normalized whitespace)
  • tokensDiff: String
  • }