yaquaholic Contributor III
Contributor III
6 months agoGraphQL Query
 Good afternoon,    I've been tasked with extracting performance data, for quarterly customer reviews, and after many hours of PowerBI M Query and trying to wrangle the data into a useable form - I st...
- 3 months agoHi - You can try this. 
 query MyQuery {
 devices {
 edges {
 node {
 id
 ip
 name
 metrics(collection: {id: "cpu", duration: "2d", rollupFreq: hourly}) {
 info {
 label
 units {
 label
 }
 }
 values {
 edges {
 cursor
 node
 }
 }
 }
 }
 }
 }
 }