OBJECT

RequestInfo

Metadata about a GraphQL request.

link GraphQL Schema definition

1type RequestInfo {
2
3# The country code where the request originated. Defaults to "US" if geoip lookup
4# fails.
5countryCode: String!
6
7# Whether the request came from a country belonging to the European Union.
8fromEU: Boolean!
9
10# The IP address where the request originated.
11ipAddress: String
12
13# Whether the request came from a country belonging to the European Economic Area.
14isFromEEA: Boolean!
15
16}