Versions Compared

Key

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

...

By querying the camera status is_connected, we can obtain information about camera statuses under owner account

...

Code Block
languagegraphql
query {
  cameraList {
    name
    is_connected
  }
}

Response:

Code Block
languagegraphql
{
  "data": {
    "cameraList": [
      {
        "name": "myCamera",
        "is_connected": true
      }
    ]
  }
}

What is good for?