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