OBJECT
diffRecord
A record in a diff report
link GraphQL Schema definition
- type diffRecord {
- # The chapter number
- Int :
- # The verse number
- Int :
- # The type of difference for this verse
- String! :
- # The items for this verse from the first document
- Item!] : [
- # The items for this verse from the second document
- Item!] : [
- # The tokens for this verse from the first document
- Item!] : [
- # The tokens for this verse from the second document
- Item!] : [
- # The text for this verse from the first document
- String :
- # The text for this verse from the second document
- String :
- # A string showing the diff of the words in this verse
- String :
- # A string showing the diff of the tokens in this verse (including punctuation and
- # normalized whitespace)
- String :
- }