catocli 3.0.10__py3-none-any.whl → 3.0.12__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of catocli might be problematic. Click here for more details.

Files changed (59) hide show
  1. catocli/Utils/clidriver.py +2 -2
  2. catocli/Utils/graphql_utils.py +15 -5
  3. catocli/Utils/help_formatter.py +50 -15
  4. catocli/__init__.py +1 -1
  5. catocli/parsers/custom/__init__.py +1 -1
  6. catocli/parsers/custom/customLib.py +3 -1
  7. catocli/parsers/mutation_groups_createGroup/README.md +39 -1
  8. catocli/parsers/mutation_groups_deleteGroup/README.md +39 -1
  9. catocli/parsers/mutation_groups_updateGroup/README.md +39 -1
  10. catocli/parsers/query_accountMetrics/README.md +29 -2
  11. catocli/parsers/query_accountSnapshot/README.md +16 -0
  12. catocli/parsers/query_appStats/README.md +11 -1
  13. catocli/parsers/query_appStatsTimeSeries/README.md +16 -2
  14. catocli/parsers/query_auditFeed/README.md +3 -1
  15. catocli/parsers/query_catalogs/README.md +178 -0
  16. catocli/parsers/query_container/README.md +49 -0
  17. catocli/parsers/query_devices/README.md +728 -0
  18. catocli/parsers/query_enterpriseDirectory/README.md +83 -0
  19. catocli/parsers/query_events/README.md +5 -1
  20. catocli/parsers/query_eventsTimeSeries/README.md +10 -2
  21. catocli/parsers/query_groups_groupList/README.md +39 -1
  22. catocli/parsers/query_hardware/README.md +153 -0
  23. catocli/parsers/query_hardwareManagement/README.md +56 -0
  24. catocli/parsers/query_popLocations/README.md +63 -0
  25. catocli/parsers/query_sandbox/README.md +69 -0
  26. catocli/parsers/query_socketPortMetrics/README.md +5 -1
  27. catocli/parsers/query_socketPortMetricsTimeSeries/README.md +10 -2
  28. catocli/parsers/query_xdr_stories/README.md +7 -2
  29. {catocli-3.0.10.dist-info → catocli-3.0.12.dist-info}/METADATA +1 -1
  30. {catocli-3.0.10.dist-info → catocli-3.0.12.dist-info}/RECORD +59 -59
  31. models/mutation.accountManagement.disableAccount.json +2 -2
  32. models/mutation.accountManagement.removeAccount.json +2 -2
  33. models/mutation.groups.createGroup.json +810 -0
  34. models/mutation.groups.deleteGroup.json +810 -0
  35. models/mutation.groups.updateGroup.json +810 -0
  36. models/query.accountMetrics.json +333 -1
  37. models/query.accountSnapshot.json +50 -1
  38. models/query.appStats.json +38 -0
  39. models/query.appStatsTimeSeries.json +78 -1
  40. models/query.auditFeed.json +105 -0
  41. models/query.catalogs.json +2708 -1
  42. models/query.container.json +793 -1
  43. models/query.devices.json +10338 -1
  44. models/query.enterpriseDirectory.json +1315 -1
  45. models/query.events.json +38 -0
  46. models/query.eventsFeed.json +1587 -0
  47. models/query.eventsTimeSeries.json +78 -1
  48. models/query.groups.groupList.json +810 -0
  49. models/query.hardware.json +2333 -1
  50. models/query.hardwareManagement.json +1086 -1
  51. models/query.popLocations.json +1172 -1
  52. models/query.sandbox.json +825 -1
  53. models/query.socketPortMetrics.json +38 -0
  54. models/query.socketPortMetricsTimeSeries.json +78 -1
  55. schema/catolib.py +107 -37
  56. {catocli-3.0.10.dist-info → catocli-3.0.12.dist-info}/WHEEL +0 -0
  57. {catocli-3.0.10.dist-info → catocli-3.0.12.dist-info}/entry_points.txt +0 -0
  58. {catocli-3.0.10.dist-info → catocli-3.0.12.dist-info}/licenses/LICENSE +0 -0
  59. {catocli-3.0.10.dist-info → catocli-3.0.12.dist-info}/top_level.txt +0 -0
@@ -703,6 +703,779 @@
703
703
  },
704
704
  "varName": "accountId"
705
705
  },
706
+ "groupMembersListInput": {
707
+ "defaultValue": "{paging: {limit: 100, from: 0}, sort: {name: {direction: ASC, priority: 2}, type: {direction: ASC, priority: 1}}}",
708
+ "description": null,
709
+ "id_str": "members___input",
710
+ "name": "input",
711
+ "path": "members.input",
712
+ "requestStr": "$groupMembersListInput:GroupMembersListInput! ",
713
+ "required": true,
714
+ "responseStr": "input:$groupMembersListInput ",
715
+ "type": {
716
+ "definition": {
717
+ "description": "Filter, sort, and pagination applied when fetching the the list of group members.",
718
+ "enumValues": null,
719
+ "fields": null,
720
+ "inputFields": {
721
+ "filter": {
722
+ "defaultValue": null,
723
+ "description": null,
724
+ "id_str": "members___input___filter",
725
+ "name": "filter",
726
+ "path": "members.input.filter",
727
+ "requestStr": "$groupMembersListFilterInput:[GroupMembersListFilterInput] ",
728
+ "required": false,
729
+ "responseStr": "filter:$groupMembersListFilterInput ",
730
+ "type": {
731
+ "definition": {
732
+ "description": "Filters to narrow down group members that are fetched.",
733
+ "enumValues": null,
734
+ "fields": null,
735
+ "inputFields": {
736
+ "name": {
737
+ "defaultValue": null,
738
+ "description": "Filter group members by name",
739
+ "id_str": "members___input___filter___name",
740
+ "name": "name",
741
+ "path": "members.input.filter.name",
742
+ "requestStr": "$advancedStringFilterInput:[AdvancedStringFilterInput] ",
743
+ "required": false,
744
+ "responseStr": "name:$advancedStringFilterInput ",
745
+ "type": {
746
+ "definition": {
747
+ "description": null,
748
+ "enumValues": null,
749
+ "fields": null,
750
+ "inputFields": {
751
+ "eq": {
752
+ "defaultValue": null,
753
+ "description": null,
754
+ "id_str": "members___input___filter___name___eq",
755
+ "name": "eq",
756
+ "path": "members.input.filter.name.eq",
757
+ "requestStr": "$eq:String ",
758
+ "required": false,
759
+ "responseStr": "eq:$eq ",
760
+ "type": {
761
+ "kind": [
762
+ "SCALAR"
763
+ ],
764
+ "name": "String",
765
+ "non_null": false
766
+ },
767
+ "varName": "eq"
768
+ },
769
+ "in": {
770
+ "defaultValue": null,
771
+ "description": null,
772
+ "id_str": "members___input___filter___name___in",
773
+ "name": "in",
774
+ "path": "members.input.filter.name.in",
775
+ "requestStr": "$in:[String] ",
776
+ "required": false,
777
+ "responseStr": "in:$in ",
778
+ "type": {
779
+ "kind": [
780
+ "LIST",
781
+ "NON_NULL",
782
+ "SCALAR"
783
+ ],
784
+ "name": "String",
785
+ "non_null": false
786
+ },
787
+ "varName": "in"
788
+ },
789
+ "neq": {
790
+ "defaultValue": null,
791
+ "description": null,
792
+ "id_str": "members___input___filter___name___neq",
793
+ "name": "neq",
794
+ "path": "members.input.filter.name.neq",
795
+ "requestStr": "$neq:String ",
796
+ "required": false,
797
+ "responseStr": "neq:$neq ",
798
+ "type": {
799
+ "kind": [
800
+ "SCALAR"
801
+ ],
802
+ "name": "String",
803
+ "non_null": false
804
+ },
805
+ "varName": "neq"
806
+ },
807
+ "nin": {
808
+ "defaultValue": null,
809
+ "description": null,
810
+ "id_str": "members___input___filter___name___nin",
811
+ "name": "nin",
812
+ "path": "members.input.filter.name.nin",
813
+ "requestStr": "$nin:[String] ",
814
+ "required": false,
815
+ "responseStr": "nin:$nin ",
816
+ "type": {
817
+ "kind": [
818
+ "LIST",
819
+ "NON_NULL",
820
+ "SCALAR"
821
+ ],
822
+ "name": "String",
823
+ "non_null": false
824
+ },
825
+ "varName": "nin"
826
+ },
827
+ "regex": {
828
+ "defaultValue": null,
829
+ "description": null,
830
+ "id_str": "members___input___filter___name___regex",
831
+ "name": "regex",
832
+ "path": "members.input.filter.name.regex",
833
+ "requestStr": "$regex:String ",
834
+ "required": false,
835
+ "responseStr": "regex:$regex ",
836
+ "type": {
837
+ "kind": [
838
+ "SCALAR"
839
+ ],
840
+ "name": "String",
841
+ "non_null": false
842
+ },
843
+ "varName": "regex"
844
+ }
845
+ },
846
+ "interfaces": null,
847
+ "kind": "INPUT_OBJECT",
848
+ "name": "AdvancedStringFilterInput",
849
+ "possibleTypes": null
850
+ },
851
+ "indexType": "input_object",
852
+ "kind": [
853
+ "LIST",
854
+ "NON_NULL",
855
+ "INPUT_OBJECT"
856
+ ],
857
+ "name": "AdvancedStringFilterInput",
858
+ "non_null": false
859
+ },
860
+ "varName": "advancedStringFilterInput"
861
+ },
862
+ "type": {
863
+ "defaultValue": null,
864
+ "description": "Filter group members by type",
865
+ "id_str": "members___input___filter___type",
866
+ "name": "type",
867
+ "path": "members.input.filter.type",
868
+ "requestStr": "$groupMemberRefTypeFilterInput:[GroupMemberRefTypeFilterInput] ",
869
+ "required": false,
870
+ "responseStr": "type:$groupMemberRefTypeFilterInput ",
871
+ "type": {
872
+ "definition": {
873
+ "description": "Filter member types using the supported operators",
874
+ "enumValues": null,
875
+ "fields": null,
876
+ "inputFields": {
877
+ "eq": {
878
+ "defaultValue": null,
879
+ "description": "Match if member type equals this value",
880
+ "id_str": "members___input___filter___type___eq",
881
+ "name": "eq",
882
+ "path": "members.input.filter.type.eq",
883
+ "requestStr": "$eq:GroupMemberRefType ",
884
+ "required": false,
885
+ "responseStr": "eq:$eq ",
886
+ "type": {
887
+ "definition": {
888
+ "description": "Member types that can be referenced in a group.",
889
+ "enumValues": [
890
+ {
891
+ "deprecationReason": null,
892
+ "description": null,
893
+ "isDeprecated": false,
894
+ "name": "SITE"
895
+ },
896
+ {
897
+ "deprecationReason": null,
898
+ "description": null,
899
+ "isDeprecated": false,
900
+ "name": "NETWORK_INTERFACE"
901
+ },
902
+ {
903
+ "deprecationReason": null,
904
+ "description": null,
905
+ "isDeprecated": false,
906
+ "name": "SITE_NETWORK_SUBNET"
907
+ },
908
+ {
909
+ "deprecationReason": null,
910
+ "description": null,
911
+ "isDeprecated": false,
912
+ "name": "FLOATING_SUBNET"
913
+ },
914
+ {
915
+ "deprecationReason": null,
916
+ "description": null,
917
+ "isDeprecated": false,
918
+ "name": "HOST"
919
+ },
920
+ {
921
+ "deprecationReason": null,
922
+ "description": null,
923
+ "isDeprecated": false,
924
+ "name": "GLOBAL_IP_RANGE"
925
+ }
926
+ ],
927
+ "fields": null,
928
+ "inputFields": null,
929
+ "interfaces": null,
930
+ "kind": "ENUM",
931
+ "name": "GroupMemberRefType",
932
+ "possibleTypes": null
933
+ },
934
+ "indexType": "enum",
935
+ "kind": [
936
+ "ENUM"
937
+ ],
938
+ "name": "GroupMemberRefType",
939
+ "non_null": false
940
+ },
941
+ "varName": "eq"
942
+ },
943
+ "in": {
944
+ "defaultValue": null,
945
+ "description": "Match if member type is in this list",
946
+ "id_str": "members___input___filter___type___in",
947
+ "name": "in",
948
+ "path": "members.input.filter.type.in",
949
+ "requestStr": "$in:[GroupMemberRefType] ",
950
+ "required": false,
951
+ "responseStr": "in:$in ",
952
+ "type": {
953
+ "definition": {
954
+ "description": "Member types that can be referenced in a group.",
955
+ "enumValues": [
956
+ {
957
+ "deprecationReason": null,
958
+ "description": null,
959
+ "isDeprecated": false,
960
+ "name": "SITE"
961
+ },
962
+ {
963
+ "deprecationReason": null,
964
+ "description": null,
965
+ "isDeprecated": false,
966
+ "name": "NETWORK_INTERFACE"
967
+ },
968
+ {
969
+ "deprecationReason": null,
970
+ "description": null,
971
+ "isDeprecated": false,
972
+ "name": "SITE_NETWORK_SUBNET"
973
+ },
974
+ {
975
+ "deprecationReason": null,
976
+ "description": null,
977
+ "isDeprecated": false,
978
+ "name": "FLOATING_SUBNET"
979
+ },
980
+ {
981
+ "deprecationReason": null,
982
+ "description": null,
983
+ "isDeprecated": false,
984
+ "name": "HOST"
985
+ },
986
+ {
987
+ "deprecationReason": null,
988
+ "description": null,
989
+ "isDeprecated": false,
990
+ "name": "GLOBAL_IP_RANGE"
991
+ }
992
+ ],
993
+ "fields": null,
994
+ "inputFields": null,
995
+ "interfaces": null,
996
+ "kind": "ENUM",
997
+ "name": "GroupMemberRefType",
998
+ "possibleTypes": null
999
+ },
1000
+ "indexType": "enum",
1001
+ "kind": [
1002
+ "LIST",
1003
+ "NON_NULL",
1004
+ "ENUM"
1005
+ ],
1006
+ "name": "GroupMemberRefType",
1007
+ "non_null": false
1008
+ },
1009
+ "varName": "in"
1010
+ },
1011
+ "neq": {
1012
+ "defaultValue": null,
1013
+ "description": "Match if member type does not equal this value",
1014
+ "id_str": "members___input___filter___type___neq",
1015
+ "name": "neq",
1016
+ "path": "members.input.filter.type.neq",
1017
+ "requestStr": "$neq:GroupMemberRefType ",
1018
+ "required": false,
1019
+ "responseStr": "neq:$neq ",
1020
+ "type": {
1021
+ "definition": {
1022
+ "description": "Member types that can be referenced in a group.",
1023
+ "enumValues": [
1024
+ {
1025
+ "deprecationReason": null,
1026
+ "description": null,
1027
+ "isDeprecated": false,
1028
+ "name": "SITE"
1029
+ },
1030
+ {
1031
+ "deprecationReason": null,
1032
+ "description": null,
1033
+ "isDeprecated": false,
1034
+ "name": "NETWORK_INTERFACE"
1035
+ },
1036
+ {
1037
+ "deprecationReason": null,
1038
+ "description": null,
1039
+ "isDeprecated": false,
1040
+ "name": "SITE_NETWORK_SUBNET"
1041
+ },
1042
+ {
1043
+ "deprecationReason": null,
1044
+ "description": null,
1045
+ "isDeprecated": false,
1046
+ "name": "FLOATING_SUBNET"
1047
+ },
1048
+ {
1049
+ "deprecationReason": null,
1050
+ "description": null,
1051
+ "isDeprecated": false,
1052
+ "name": "HOST"
1053
+ },
1054
+ {
1055
+ "deprecationReason": null,
1056
+ "description": null,
1057
+ "isDeprecated": false,
1058
+ "name": "GLOBAL_IP_RANGE"
1059
+ }
1060
+ ],
1061
+ "fields": null,
1062
+ "inputFields": null,
1063
+ "interfaces": null,
1064
+ "kind": "ENUM",
1065
+ "name": "GroupMemberRefType",
1066
+ "possibleTypes": null
1067
+ },
1068
+ "indexType": "enum",
1069
+ "kind": [
1070
+ "ENUM"
1071
+ ],
1072
+ "name": "GroupMemberRefType",
1073
+ "non_null": false
1074
+ },
1075
+ "varName": "neq"
1076
+ },
1077
+ "nin": {
1078
+ "defaultValue": null,
1079
+ "description": "Match if member type is not in this list",
1080
+ "id_str": "members___input___filter___type___nin",
1081
+ "name": "nin",
1082
+ "path": "members.input.filter.type.nin",
1083
+ "requestStr": "$nin:[GroupMemberRefType] ",
1084
+ "required": false,
1085
+ "responseStr": "nin:$nin ",
1086
+ "type": {
1087
+ "definition": {
1088
+ "description": "Member types that can be referenced in a group.",
1089
+ "enumValues": [
1090
+ {
1091
+ "deprecationReason": null,
1092
+ "description": null,
1093
+ "isDeprecated": false,
1094
+ "name": "SITE"
1095
+ },
1096
+ {
1097
+ "deprecationReason": null,
1098
+ "description": null,
1099
+ "isDeprecated": false,
1100
+ "name": "NETWORK_INTERFACE"
1101
+ },
1102
+ {
1103
+ "deprecationReason": null,
1104
+ "description": null,
1105
+ "isDeprecated": false,
1106
+ "name": "SITE_NETWORK_SUBNET"
1107
+ },
1108
+ {
1109
+ "deprecationReason": null,
1110
+ "description": null,
1111
+ "isDeprecated": false,
1112
+ "name": "FLOATING_SUBNET"
1113
+ },
1114
+ {
1115
+ "deprecationReason": null,
1116
+ "description": null,
1117
+ "isDeprecated": false,
1118
+ "name": "HOST"
1119
+ },
1120
+ {
1121
+ "deprecationReason": null,
1122
+ "description": null,
1123
+ "isDeprecated": false,
1124
+ "name": "GLOBAL_IP_RANGE"
1125
+ }
1126
+ ],
1127
+ "fields": null,
1128
+ "inputFields": null,
1129
+ "interfaces": null,
1130
+ "kind": "ENUM",
1131
+ "name": "GroupMemberRefType",
1132
+ "possibleTypes": null
1133
+ },
1134
+ "indexType": "enum",
1135
+ "kind": [
1136
+ "LIST",
1137
+ "NON_NULL",
1138
+ "ENUM"
1139
+ ],
1140
+ "name": "GroupMemberRefType",
1141
+ "non_null": false
1142
+ },
1143
+ "varName": "nin"
1144
+ }
1145
+ },
1146
+ "interfaces": null,
1147
+ "kind": "INPUT_OBJECT",
1148
+ "name": "GroupMemberRefTypeFilterInput",
1149
+ "possibleTypes": null
1150
+ },
1151
+ "indexType": "input_object",
1152
+ "kind": [
1153
+ "LIST",
1154
+ "NON_NULL",
1155
+ "INPUT_OBJECT"
1156
+ ],
1157
+ "name": "GroupMemberRefTypeFilterInput",
1158
+ "non_null": false
1159
+ },
1160
+ "varName": "groupMemberRefTypeFilterInput"
1161
+ }
1162
+ },
1163
+ "interfaces": null,
1164
+ "kind": "INPUT_OBJECT",
1165
+ "name": "GroupMembersListFilterInput",
1166
+ "possibleTypes": null
1167
+ },
1168
+ "indexType": "input_object",
1169
+ "kind": [
1170
+ "LIST",
1171
+ "NON_NULL",
1172
+ "INPUT_OBJECT"
1173
+ ],
1174
+ "name": "GroupMembersListFilterInput",
1175
+ "non_null": false
1176
+ },
1177
+ "varName": "groupMembersListFilterInput"
1178
+ },
1179
+ "paging": {
1180
+ "defaultValue": "{limit: 100, from: 0}",
1181
+ "description": null,
1182
+ "id_str": "members___input___paging",
1183
+ "name": "paging",
1184
+ "path": "members.input.paging",
1185
+ "requestStr": "$pagingInput:PagingInput! ",
1186
+ "required": true,
1187
+ "responseStr": "paging:$pagingInput ",
1188
+ "type": {
1189
+ "definition": {
1190
+ "description": null,
1191
+ "enumValues": null,
1192
+ "fields": null,
1193
+ "inputFields": {
1194
+ "from": {
1195
+ "defaultValue": "0",
1196
+ "description": null,
1197
+ "id_str": "members___input___paging___from",
1198
+ "name": "from",
1199
+ "path": "members.input.paging.from",
1200
+ "requestStr": "$from:Int! ",
1201
+ "required": true,
1202
+ "responseStr": "from:$from ",
1203
+ "type": {
1204
+ "kind": [
1205
+ "NON_NULL",
1206
+ "SCALAR"
1207
+ ],
1208
+ "name": "Int",
1209
+ "non_null": false
1210
+ },
1211
+ "varName": "from"
1212
+ },
1213
+ "limit": {
1214
+ "defaultValue": "100",
1215
+ "description": null,
1216
+ "id_str": "members___input___paging___limit",
1217
+ "name": "limit",
1218
+ "path": "members.input.paging.limit",
1219
+ "requestStr": "$limit:Int! ",
1220
+ "required": true,
1221
+ "responseStr": "limit:$limit ",
1222
+ "type": {
1223
+ "kind": [
1224
+ "NON_NULL",
1225
+ "SCALAR"
1226
+ ],
1227
+ "name": "Int",
1228
+ "non_null": false
1229
+ },
1230
+ "varName": "limit"
1231
+ }
1232
+ },
1233
+ "interfaces": null,
1234
+ "kind": "INPUT_OBJECT",
1235
+ "name": "PagingInput",
1236
+ "possibleTypes": null
1237
+ },
1238
+ "indexType": "input_object",
1239
+ "kind": [
1240
+ "NON_NULL",
1241
+ "INPUT_OBJECT"
1242
+ ],
1243
+ "name": "PagingInput",
1244
+ "non_null": false
1245
+ },
1246
+ "varName": "pagingInput"
1247
+ },
1248
+ "sort": {
1249
+ "defaultValue": "{name: {direction: ASC, priority: 2}, type: {direction: ASC, priority: 1}}",
1250
+ "description": null,
1251
+ "id_str": "members___input___sort",
1252
+ "name": "sort",
1253
+ "path": "members.input.sort",
1254
+ "requestStr": "$groupMembersListSortInput:GroupMembersListSortInput! ",
1255
+ "required": true,
1256
+ "responseStr": "sort:$groupMembersListSortInput ",
1257
+ "type": {
1258
+ "definition": {
1259
+ "description": "Sort group members by one or more fields.\nIf multiple fields are specified, the system uses their priority to determine order. For example, type with priority 1 will be used first, then name with priority 2.",
1260
+ "enumValues": null,
1261
+ "fields": null,
1262
+ "inputFields": {
1263
+ "name": {
1264
+ "defaultValue": null,
1265
+ "description": "Sort by member name",
1266
+ "id_str": "members___input___sort___name",
1267
+ "name": "name",
1268
+ "path": "members.input.sort.name",
1269
+ "requestStr": "$sortOrderInput:SortOrderInput ",
1270
+ "required": false,
1271
+ "responseStr": "name:$sortOrderInput ",
1272
+ "type": {
1273
+ "definition": {
1274
+ "description": null,
1275
+ "enumValues": null,
1276
+ "fields": null,
1277
+ "inputFields": {
1278
+ "direction": {
1279
+ "defaultValue": "ASC",
1280
+ "description": null,
1281
+ "id_str": "members___input___sort___name___direction",
1282
+ "name": "direction",
1283
+ "path": "members.input.sort.name.direction",
1284
+ "requestStr": "$direction:SortOrder! ",
1285
+ "required": true,
1286
+ "responseStr": "direction:$direction ",
1287
+ "type": {
1288
+ "definition": {
1289
+ "description": null,
1290
+ "enumValues": [
1291
+ {
1292
+ "deprecationReason": null,
1293
+ "description": null,
1294
+ "isDeprecated": false,
1295
+ "name": "ASC"
1296
+ },
1297
+ {
1298
+ "deprecationReason": null,
1299
+ "description": null,
1300
+ "isDeprecated": false,
1301
+ "name": "DESC"
1302
+ }
1303
+ ],
1304
+ "fields": null,
1305
+ "inputFields": null,
1306
+ "interfaces": null,
1307
+ "kind": "ENUM",
1308
+ "name": "SortOrder",
1309
+ "possibleTypes": null
1310
+ },
1311
+ "indexType": "enum",
1312
+ "kind": [
1313
+ "NON_NULL",
1314
+ "ENUM"
1315
+ ],
1316
+ "name": "SortOrder",
1317
+ "non_null": false
1318
+ },
1319
+ "varName": "direction"
1320
+ },
1321
+ "priority": {
1322
+ "defaultValue": "1",
1323
+ "description": null,
1324
+ "id_str": "members___input___sort___name___priority",
1325
+ "name": "priority",
1326
+ "path": "members.input.sort.name.priority",
1327
+ "requestStr": "$priority:Int! ",
1328
+ "required": true,
1329
+ "responseStr": "priority:$priority ",
1330
+ "type": {
1331
+ "kind": [
1332
+ "NON_NULL",
1333
+ "SCALAR"
1334
+ ],
1335
+ "name": "Int",
1336
+ "non_null": false
1337
+ },
1338
+ "varName": "priority"
1339
+ }
1340
+ },
1341
+ "interfaces": null,
1342
+ "kind": "INPUT_OBJECT",
1343
+ "name": "SortOrderInput",
1344
+ "possibleTypes": null
1345
+ },
1346
+ "indexType": "input_object",
1347
+ "kind": [
1348
+ "INPUT_OBJECT"
1349
+ ],
1350
+ "name": "SortOrderInput",
1351
+ "non_null": false
1352
+ },
1353
+ "varName": "sortOrderInput"
1354
+ },
1355
+ "type": {
1356
+ "defaultValue": null,
1357
+ "description": "Sort by member type",
1358
+ "id_str": "members___input___sort___type",
1359
+ "name": "type",
1360
+ "path": "members.input.sort.type",
1361
+ "requestStr": "$sortOrderInput:SortOrderInput ",
1362
+ "required": false,
1363
+ "responseStr": "type:$sortOrderInput ",
1364
+ "type": {
1365
+ "definition": {
1366
+ "description": null,
1367
+ "enumValues": null,
1368
+ "fields": null,
1369
+ "inputFields": {
1370
+ "direction": {
1371
+ "defaultValue": "ASC",
1372
+ "description": null,
1373
+ "id_str": "members___input___sort___type___direction",
1374
+ "name": "direction",
1375
+ "path": "members.input.sort.type.direction",
1376
+ "requestStr": "$direction:SortOrder! ",
1377
+ "required": true,
1378
+ "responseStr": "direction:$direction ",
1379
+ "type": {
1380
+ "definition": {
1381
+ "description": null,
1382
+ "enumValues": [
1383
+ {
1384
+ "deprecationReason": null,
1385
+ "description": null,
1386
+ "isDeprecated": false,
1387
+ "name": "ASC"
1388
+ },
1389
+ {
1390
+ "deprecationReason": null,
1391
+ "description": null,
1392
+ "isDeprecated": false,
1393
+ "name": "DESC"
1394
+ }
1395
+ ],
1396
+ "fields": null,
1397
+ "inputFields": null,
1398
+ "interfaces": null,
1399
+ "kind": "ENUM",
1400
+ "name": "SortOrder",
1401
+ "possibleTypes": null
1402
+ },
1403
+ "indexType": "enum",
1404
+ "kind": [
1405
+ "NON_NULL",
1406
+ "ENUM"
1407
+ ],
1408
+ "name": "SortOrder",
1409
+ "non_null": false
1410
+ },
1411
+ "varName": "direction"
1412
+ },
1413
+ "priority": {
1414
+ "defaultValue": "1",
1415
+ "description": null,
1416
+ "id_str": "members___input___sort___type___priority",
1417
+ "name": "priority",
1418
+ "path": "members.input.sort.type.priority",
1419
+ "requestStr": "$priority:Int! ",
1420
+ "required": true,
1421
+ "responseStr": "priority:$priority ",
1422
+ "type": {
1423
+ "kind": [
1424
+ "NON_NULL",
1425
+ "SCALAR"
1426
+ ],
1427
+ "name": "Int",
1428
+ "non_null": false
1429
+ },
1430
+ "varName": "priority"
1431
+ }
1432
+ },
1433
+ "interfaces": null,
1434
+ "kind": "INPUT_OBJECT",
1435
+ "name": "SortOrderInput",
1436
+ "possibleTypes": null
1437
+ },
1438
+ "indexType": "input_object",
1439
+ "kind": [
1440
+ "INPUT_OBJECT"
1441
+ ],
1442
+ "name": "SortOrderInput",
1443
+ "non_null": false
1444
+ },
1445
+ "varName": "sortOrderInput"
1446
+ }
1447
+ },
1448
+ "interfaces": null,
1449
+ "kind": "INPUT_OBJECT",
1450
+ "name": "GroupMembersListSortInput",
1451
+ "possibleTypes": null
1452
+ },
1453
+ "indexType": "input_object",
1454
+ "kind": [
1455
+ "NON_NULL",
1456
+ "INPUT_OBJECT"
1457
+ ],
1458
+ "name": "GroupMembersListSortInput",
1459
+ "non_null": false
1460
+ },
1461
+ "varName": "groupMembersListSortInput"
1462
+ }
1463
+ },
1464
+ "interfaces": null,
1465
+ "kind": "INPUT_OBJECT",
1466
+ "name": "GroupMembersListInput",
1467
+ "possibleTypes": null
1468
+ },
1469
+ "indexType": "input_object",
1470
+ "kind": [
1471
+ "NON_NULL",
1472
+ "INPUT_OBJECT"
1473
+ ],
1474
+ "name": "GroupMembersListInput",
1475
+ "non_null": false
1476
+ },
1477
+ "varName": "groupMembersListInput"
1478
+ },
706
1479
  "updateGroupInput": {
707
1480
  "defaultValue": null,
708
1481
  "description": null,
@@ -3564,6 +4337,43 @@
3564
4337
  "non_null": false
3565
4338
  },
3566
4339
  "variablesPayload": {
4340
+ "groupMembersListInput": {
4341
+ "groupMembersListFilterInput": {
4342
+ "name": {
4343
+ "eq": "string",
4344
+ "in": [
4345
+ "string1",
4346
+ "string2"
4347
+ ],
4348
+ "neq": "string",
4349
+ "nin": [
4350
+ "string1",
4351
+ "string2"
4352
+ ],
4353
+ "regex": "string"
4354
+ },
4355
+ "type": {
4356
+ "eq": "SITE",
4357
+ "in": "SITE",
4358
+ "neq": "SITE",
4359
+ "nin": "SITE"
4360
+ }
4361
+ },
4362
+ "groupMembersListSortInput": {
4363
+ "name": {
4364
+ "direction": "ASC",
4365
+ "priority": 1
4366
+ },
4367
+ "type": {
4368
+ "direction": "ASC",
4369
+ "priority": 1
4370
+ }
4371
+ },
4372
+ "pagingInput": {
4373
+ "from": 1,
4374
+ "limit": 1
4375
+ }
4376
+ },
3567
4377
  "updateGroupInput": {
3568
4378
  "description": "string",
3569
4379
  "groupMemberRefTypedInput": {