Fragments Must Be Used
Formal Specification
- For each fragment defined in the document.
 - fragment must be the target of at least one spread in the document
 
Explanatory Text
Defined fragments must be used within a query document.
For example the following is an invalid query document:
fragment nameFragment on Dog { # unused
  name
}
{
  dog {
    name
  }
}