OBJECT
Hits
Description
Hit statistics including total hits, violations, and permitted hits.
link GraphQL Schema definition
- type Hits {
- # Sum of hits permitted by allowlist.
- : 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.
- : Int!
- # Sum of all hits.
- : 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.
- : Int!
- # Sum of hits not permitted by allowlist.
- : 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.
- : Int!
- }