The notes field on CaseInformation now has an argument includeHtml to define whether you want to include the HTML formatting in the response. The default value for the argument is true to preserve existing behavior.
An example of using this new argument is as follows:
query Notes($caseId: String!) {
caseDetails(caseId: $caseId) {
... on CaseInformation {
caseId
notes(includeHtml: false)
}
}
}