Skip to content

Commit 77db71c

Browse files
committed
chore: update schema
1 parent 5f294af commit 77db71c

File tree

1 file changed

+217
-0
lines changed

1 file changed

+217
-0
lines changed

src/main/resources/graphql/schema.json

Lines changed: 217 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -454,6 +454,73 @@
454454
"enumValues": null,
455455
"possibleTypes": null
456456
},
457+
{
458+
"kind": "OBJECT",
459+
"name": "HistoricalView",
460+
"description": null,
461+
"fields": [
462+
{
463+
"name": "entityIds",
464+
"description": null,
465+
"args": [],
466+
"type": {
467+
"kind": "LIST",
468+
"name": null,
469+
"ofType": {
470+
"kind": "NON_NULL",
471+
"name": null,
472+
"ofType": {
473+
"kind": "SCALAR",
474+
"name": "String",
475+
"ofType": null
476+
}
477+
}
478+
},
479+
"isDeprecated": false,
480+
"deprecationReason": null
481+
},
482+
{
483+
"name": "metricIds",
484+
"description": null,
485+
"args": [],
486+
"type": {
487+
"kind": "LIST",
488+
"name": null,
489+
"ofType": {
490+
"kind": "NON_NULL",
491+
"name": null,
492+
"ofType": {
493+
"kind": "SCALAR",
494+
"name": "String",
495+
"ofType": null
496+
}
497+
}
498+
},
499+
"isDeprecated": false,
500+
"deprecationReason": null
501+
},
502+
{
503+
"name": "data",
504+
"description": null,
505+
"args": [],
506+
"type": {
507+
"kind": "NON_NULL",
508+
"name": null,
509+
"ofType": {
510+
"kind": "SCALAR",
511+
"name": "String",
512+
"ofType": null
513+
}
514+
},
515+
"isDeprecated": false,
516+
"deprecationReason": null
517+
}
518+
],
519+
"inputFields": null,
520+
"interfaces": [],
521+
"enumValues": null,
522+
"possibleTypes": null
523+
},
457524
{
458525
"kind": "OBJECT",
459526
"name": "InstrumentThrottle",
@@ -2662,6 +2729,41 @@
26622729
],
26632730
"possibleTypes": null
26642731
},
2732+
{
2733+
"kind": "ENUM",
2734+
"name": "MetricStep",
2735+
"description": null,
2736+
"fields": null,
2737+
"inputFields": null,
2738+
"interfaces": null,
2739+
"enumValues": [
2740+
{
2741+
"name": "SECOND",
2742+
"description": null,
2743+
"isDeprecated": false,
2744+
"deprecationReason": null
2745+
},
2746+
{
2747+
"name": "MINUTE",
2748+
"description": null,
2749+
"isDeprecated": false,
2750+
"deprecationReason": null
2751+
},
2752+
{
2753+
"name": "HOUR",
2754+
"description": null,
2755+
"isDeprecated": false,
2756+
"deprecationReason": null
2757+
},
2758+
{
2759+
"name": "DAY",
2760+
"description": null,
2761+
"isDeprecated": false,
2762+
"deprecationReason": null
2763+
}
2764+
],
2765+
"possibleTypes": null
2766+
},
26652767
{
26662768
"kind": "OBJECT",
26672769
"name": "MetricValue",
@@ -3916,6 +4018,22 @@
39164018
"name": "Query",
39174019
"description": null,
39184020
"fields": [
4021+
{
4022+
"name": "version",
4023+
"description": null,
4024+
"args": [],
4025+
"type": {
4026+
"kind": "NON_NULL",
4027+
"name": null,
4028+
"ofType": {
4029+
"kind": "SCALAR",
4030+
"name": "String",
4031+
"ofType": null
4032+
}
4033+
},
4034+
"isDeprecated": false,
4035+
"deprecationReason": null
4036+
},
39194037
{
39204038
"name": "getAccessPermissions",
39214039
"description": null,
@@ -4609,6 +4727,105 @@
46094727
"isDeprecated": false,
46104728
"deprecationReason": null
46114729
},
4730+
{
4731+
"name": "getHistoricalMetrics",
4732+
"description": null,
4733+
"args": [
4734+
{
4735+
"name": "entityIds",
4736+
"description": null,
4737+
"type": {
4738+
"kind": "NON_NULL",
4739+
"name": null,
4740+
"ofType": {
4741+
"kind": "LIST",
4742+
"name": null,
4743+
"ofType": {
4744+
"kind": "NON_NULL",
4745+
"name": null,
4746+
"ofType": {
4747+
"kind": "SCALAR",
4748+
"name": "String",
4749+
"ofType": null
4750+
}
4751+
}
4752+
}
4753+
},
4754+
"defaultValue": null
4755+
},
4756+
{
4757+
"name": "metricIds",
4758+
"description": null,
4759+
"type": {
4760+
"kind": "NON_NULL",
4761+
"name": null,
4762+
"ofType": {
4763+
"kind": "LIST",
4764+
"name": null,
4765+
"ofType": {
4766+
"kind": "NON_NULL",
4767+
"name": null,
4768+
"ofType": {
4769+
"kind": "SCALAR",
4770+
"name": "String",
4771+
"ofType": null
4772+
}
4773+
}
4774+
}
4775+
},
4776+
"defaultValue": null
4777+
},
4778+
{
4779+
"name": "step",
4780+
"description": null,
4781+
"type": {
4782+
"kind": "NON_NULL",
4783+
"name": null,
4784+
"ofType": {
4785+
"kind": "ENUM",
4786+
"name": "MetricStep",
4787+
"ofType": null
4788+
}
4789+
},
4790+
"defaultValue": null
4791+
},
4792+
{
4793+
"name": "start",
4794+
"description": null,
4795+
"type": {
4796+
"kind": "NON_NULL",
4797+
"name": null,
4798+
"ofType": {
4799+
"kind": "SCALAR",
4800+
"name": "String",
4801+
"ofType": null
4802+
}
4803+
},
4804+
"defaultValue": null
4805+
},
4806+
{
4807+
"name": "stop",
4808+
"description": null,
4809+
"type": {
4810+
"kind": "SCALAR",
4811+
"name": "String",
4812+
"ofType": null
4813+
},
4814+
"defaultValue": null
4815+
}
4816+
],
4817+
"type": {
4818+
"kind": "NON_NULL",
4819+
"name": null,
4820+
"ofType": {
4821+
"kind": "OBJECT",
4822+
"name": "HistoricalView",
4823+
"ofType": null
4824+
}
4825+
},
4826+
"isDeprecated": false,
4827+
"deprecationReason": null
4828+
},
46124829
{
46134830
"name": "getClientAccessors",
46144831
"description": null,

0 commit comments

Comments
 (0)