query alarmStationInfo($homeId: ID!) { alarmStationInfo(homeId: $homeId) { homeId status contacts { id firstName lastName phoneNumber { countryCode nationalNumber } } } }
{ "homeId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4" }
{ "data": { "homeId": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "status": "ENABLED", "contacts": [ { "id": "9cfb1c81-4c79-452f-b1f5-8ee6571276b4", "firstName": "Example String", "lastName": "Example String", "phoneNumber": { "countryCode": "Example String", "nationalNumber": "Example String" } } ] } }