All variables documentation

hello,

I am reading this queries from - Devices and Services - remote.it

there, it is mentioned that these example only shows some of the variables and available attributes for the device and service collections.

where to read about all other variables available for getting the device information?
[please, share the variables/attributes documentation]

for example, lets say, I need to get the ip address of the device, what variable to use in the query to get the ip address of the added devices

thanks,
shanmu

These are discoverable using a client such as Insomnia or viewing the schema. The attributes are just that, attributes and can be customized by you.
In the case of the IP address of your device, you can get that by drilling down into the device or service item and then the endpoint.

For example:

query {
  login {
    devices(from: 0, size: 1000) {
      hasMore
      total
      items {
         name
         id
         created
         endpoint {
            externalAddress
         }
      }
   }
 }
}