hanahmily opened a new issue #1747: Test: Service topology map contains invalid nodes URL: https://github.com/apache/incubator-skywalking/issues/1747 Refer to #1710 ## Requst ### Query ```graphql query Service($serviceId: ID!, $duration: Duration!) { getServiceTopology(serviceId: $serviceId, duration: $duration) { nodes { id name type isReal } calls { id source target callType detectPoint } } ``` ### Variables ```json {"duration":{"start":"2018-10-10 1100","end":"2018-10-10 1115","step":"MINUTE"},"serviceId":"3"} ``` ## Response ```json {"data":{"getServiceTopology":{"nodes":[{"id":"4","name":"","type":"Dubbo","isReal":false},{"id":"2","name":"dubbox-consumer","type":"rocketMQ-consumer","isReal":true},{"id":"5","name":"","type":"MongoDB","isReal":false},{"id":"3","name":"dubbox-provider","type":"Dubbo","isReal":true}],"calls":[{"id":"2_4","source":"2","target":"4","callType":"Dubbo","detectPoint":"CLIENT"},{"id":"3_5","source":"3","target":"5","callType":"mongodb-driver","detectPoint":"CLIENT"}]}}} ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
