OBJECT

Hits

Description

Hit statistics including total hits, violations, and permitted hits.

link GraphQL Schema definition

  • type Hits {
  • # Sum of hits permitted by allowlist.
  • permittedHits: Int!
  • # Represents the change in permitted hits between the current
  • # result and a previous result.
  • # The interval of change may depend on the endpoint returning the result.
  • permittedHitsDelta: Int!
  • # Sum of all hits.
  • totalHits: Int!
  • # Represents the change in total hits between the current
  • # result and a previous result.
  • # The interval of change may depend on the endpoint returning the result.
  • totalHitsDelta: Int!
  • # Sum of hits not permitted by allowlist.
  • violations: Int!
  • # Represents the change in violation between the current
  • # result and a previous result.
  • # The interval of change may depend on the endpoint returning the result.
  • violationsDelta: Int!
  • }