Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

By querying the camera type, we obtain information about the serial number (serial_number), connection status (is_connected) and camera ip address (source_ip). The mandatory parameter node_id can be found using the query List of all elements and type on cameraList or nodeList.

Query:

Code Block
languagegraphqljson
query {
  camera(node_id:140094){
    name
    serial_number
    is_connected
    connection{
      source_ip
    }
  }
}

...