You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because the structure of the statistics payload varies by query, a `BinaryData` return type is used. It contains the raw JSON response.
337
+
Because the structure of the statistics payload varies by query, a `BinaryData` return type is used. It contains the raw JSON response. The statistics are found within the `query` property of the JSON. For example:
338
+
339
+
```json
340
+
{
341
+
"query": {
342
+
"executionTime": 0.0156478,
343
+
"resourceUsage": {...},
344
+
"inputDatasetStatistics": {...},
345
+
"datasetStatistics": [{...}]
346
+
}
347
+
}
348
+
```
338
349
339
350
#### Include visualization
340
351
@@ -368,7 +379,29 @@ var queryViz = vizDoc.RootElement.GetProperty("visualization");
368
379
Console.WriteLine(queryViz.GetString());
369
380
```
370
381
371
-
Because the structure of the visualization payload varies by query, a `BinaryData` return type is used. It contains the raw JSON response.
382
+
Because the structure of the visualization payload varies by query, a `BinaryData` return type is used. It contains the raw JSON response. For example:
0 commit comments