graphlit-client 1.0.20250622007 → 1.0.20250627001
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.
- package/README.md +235 -5
- package/dist/client.d.ts +26 -1
- package/dist/client.js +293 -55
- package/dist/generated/graphql-documents.d.ts +21 -0
- package/dist/generated/graphql-documents.js +1378 -0
- package/dist/generated/graphql-types.d.ts +2660 -53
- package/dist/generated/graphql-types.js +119 -0
- package/dist/streaming/llm-formatters.js +68 -5
- package/dist/streaming/providers.d.ts +18 -13
- package/dist/streaming/providers.js +690 -167
- package/dist/streaming/ui-event-adapter.d.ts +7 -0
- package/dist/streaming/ui-event-adapter.js +55 -0
- package/dist/types/internal.d.ts +11 -0
- package/dist/types/ui-events.d.ts +9 -0
- package/package.json +1 -1
@@ -555,6 +555,141 @@ export const UpdateCollection = gql `
|
|
555
555
|
}
|
556
556
|
}
|
557
557
|
`;
|
558
|
+
export const CountConnectors = gql `
|
559
|
+
query CountConnectors($filter: ConnectorFilter, $correlationId: String) {
|
560
|
+
countConnectors(filter: $filter, correlationId: $correlationId) {
|
561
|
+
count
|
562
|
+
}
|
563
|
+
}
|
564
|
+
`;
|
565
|
+
export const CreateConnector = gql `
|
566
|
+
mutation CreateConnector($connector: ConnectorInput!) {
|
567
|
+
createConnector(connector: $connector) {
|
568
|
+
id
|
569
|
+
name
|
570
|
+
state
|
571
|
+
type
|
572
|
+
}
|
573
|
+
}
|
574
|
+
`;
|
575
|
+
export const DeleteConnector = gql `
|
576
|
+
mutation DeleteConnector($id: ID!) {
|
577
|
+
deleteConnector(id: $id) {
|
578
|
+
id
|
579
|
+
state
|
580
|
+
}
|
581
|
+
}
|
582
|
+
`;
|
583
|
+
export const GetConnector = gql `
|
584
|
+
query GetConnector($id: ID!, $correlationId: String) {
|
585
|
+
connector(id: $id, correlationId: $correlationId) {
|
586
|
+
id
|
587
|
+
name
|
588
|
+
creationDate
|
589
|
+
relevance
|
590
|
+
owner {
|
591
|
+
id
|
592
|
+
}
|
593
|
+
state
|
594
|
+
type
|
595
|
+
authentication {
|
596
|
+
type
|
597
|
+
microsoft {
|
598
|
+
tenantId
|
599
|
+
clientId
|
600
|
+
clientSecret
|
601
|
+
}
|
602
|
+
google {
|
603
|
+
clientId
|
604
|
+
clientSecret
|
605
|
+
}
|
606
|
+
arcade {
|
607
|
+
authorizationId
|
608
|
+
}
|
609
|
+
}
|
610
|
+
integration {
|
611
|
+
type
|
612
|
+
uri
|
613
|
+
slack {
|
614
|
+
token
|
615
|
+
channel
|
616
|
+
}
|
617
|
+
email {
|
618
|
+
from
|
619
|
+
subject
|
620
|
+
to
|
621
|
+
}
|
622
|
+
twitter {
|
623
|
+
consumerKey
|
624
|
+
consumerSecret
|
625
|
+
accessTokenKey
|
626
|
+
accessTokenSecret
|
627
|
+
}
|
628
|
+
}
|
629
|
+
}
|
630
|
+
}
|
631
|
+
`;
|
632
|
+
export const QueryConnectors = gql `
|
633
|
+
query QueryConnectors($filter: ConnectorFilter, $correlationId: String) {
|
634
|
+
connectors(filter: $filter, correlationId: $correlationId) {
|
635
|
+
results {
|
636
|
+
id
|
637
|
+
name
|
638
|
+
creationDate
|
639
|
+
relevance
|
640
|
+
owner {
|
641
|
+
id
|
642
|
+
}
|
643
|
+
state
|
644
|
+
type
|
645
|
+
authentication {
|
646
|
+
type
|
647
|
+
microsoft {
|
648
|
+
tenantId
|
649
|
+
clientId
|
650
|
+
clientSecret
|
651
|
+
}
|
652
|
+
google {
|
653
|
+
clientId
|
654
|
+
clientSecret
|
655
|
+
}
|
656
|
+
arcade {
|
657
|
+
authorizationId
|
658
|
+
}
|
659
|
+
}
|
660
|
+
integration {
|
661
|
+
type
|
662
|
+
uri
|
663
|
+
slack {
|
664
|
+
token
|
665
|
+
channel
|
666
|
+
}
|
667
|
+
email {
|
668
|
+
from
|
669
|
+
subject
|
670
|
+
to
|
671
|
+
}
|
672
|
+
twitter {
|
673
|
+
consumerKey
|
674
|
+
consumerSecret
|
675
|
+
accessTokenKey
|
676
|
+
accessTokenSecret
|
677
|
+
}
|
678
|
+
}
|
679
|
+
}
|
680
|
+
}
|
681
|
+
}
|
682
|
+
`;
|
683
|
+
export const UpdateConnector = gql `
|
684
|
+
mutation UpdateConnector($connector: ConnectorUpdateInput!) {
|
685
|
+
updateConnector(connector: $connector) {
|
686
|
+
id
|
687
|
+
name
|
688
|
+
state
|
689
|
+
type
|
690
|
+
}
|
691
|
+
}
|
692
|
+
`;
|
558
693
|
export const CountContents = gql `
|
559
694
|
query CountContents($filter: ContentFilter, $correlationId: String) {
|
560
695
|
countContents(filter: $filter, correlationId: $correlationId) {
|
@@ -1088,6 +1223,48 @@ export const GetContent = gql `
|
|
1088
1223
|
familyName
|
1089
1224
|
}
|
1090
1225
|
}
|
1226
|
+
event {
|
1227
|
+
eventIdentifier
|
1228
|
+
calendarIdentifier
|
1229
|
+
subject
|
1230
|
+
startDateTime
|
1231
|
+
endDateTime
|
1232
|
+
isAllDay
|
1233
|
+
timezone
|
1234
|
+
status
|
1235
|
+
visibility
|
1236
|
+
meetingLink
|
1237
|
+
organizer {
|
1238
|
+
name
|
1239
|
+
email
|
1240
|
+
isOptional
|
1241
|
+
isOrganizer
|
1242
|
+
responseStatus
|
1243
|
+
}
|
1244
|
+
attendees {
|
1245
|
+
name
|
1246
|
+
email
|
1247
|
+
isOptional
|
1248
|
+
isOrganizer
|
1249
|
+
responseStatus
|
1250
|
+
}
|
1251
|
+
categories
|
1252
|
+
reminders {
|
1253
|
+
minutesBefore
|
1254
|
+
method
|
1255
|
+
}
|
1256
|
+
recurrence {
|
1257
|
+
pattern
|
1258
|
+
interval
|
1259
|
+
count
|
1260
|
+
until
|
1261
|
+
daysOfWeek
|
1262
|
+
dayOfMonth
|
1263
|
+
monthOfYear
|
1264
|
+
}
|
1265
|
+
recurringEventIdentifier
|
1266
|
+
isRecurring
|
1267
|
+
}
|
1091
1268
|
issue {
|
1092
1269
|
identifier
|
1093
1270
|
title
|
@@ -1759,6 +1936,48 @@ export const LookupContents = gql `
|
|
1759
1936
|
familyName
|
1760
1937
|
}
|
1761
1938
|
}
|
1939
|
+
event {
|
1940
|
+
eventIdentifier
|
1941
|
+
calendarIdentifier
|
1942
|
+
subject
|
1943
|
+
startDateTime
|
1944
|
+
endDateTime
|
1945
|
+
isAllDay
|
1946
|
+
timezone
|
1947
|
+
status
|
1948
|
+
visibility
|
1949
|
+
meetingLink
|
1950
|
+
organizer {
|
1951
|
+
name
|
1952
|
+
email
|
1953
|
+
isOptional
|
1954
|
+
isOrganizer
|
1955
|
+
responseStatus
|
1956
|
+
}
|
1957
|
+
attendees {
|
1958
|
+
name
|
1959
|
+
email
|
1960
|
+
isOptional
|
1961
|
+
isOrganizer
|
1962
|
+
responseStatus
|
1963
|
+
}
|
1964
|
+
categories
|
1965
|
+
reminders {
|
1966
|
+
minutesBefore
|
1967
|
+
method
|
1968
|
+
}
|
1969
|
+
recurrence {
|
1970
|
+
pattern
|
1971
|
+
interval
|
1972
|
+
count
|
1973
|
+
until
|
1974
|
+
daysOfWeek
|
1975
|
+
dayOfMonth
|
1976
|
+
monthOfYear
|
1977
|
+
}
|
1978
|
+
recurringEventIdentifier
|
1979
|
+
isRecurring
|
1980
|
+
}
|
1762
1981
|
issue {
|
1763
1982
|
identifier
|
1764
1983
|
title
|
@@ -2154,6 +2373,7 @@ export const QueryContents = gql `
|
|
2154
2373
|
latitude
|
2155
2374
|
longitude
|
2156
2375
|
}
|
2376
|
+
features
|
2157
2377
|
type
|
2158
2378
|
fileType
|
2159
2379
|
mimeType
|
@@ -2277,6 +2497,48 @@ export const QueryContents = gql `
|
|
2277
2497
|
familyName
|
2278
2498
|
}
|
2279
2499
|
}
|
2500
|
+
event {
|
2501
|
+
eventIdentifier
|
2502
|
+
calendarIdentifier
|
2503
|
+
subject
|
2504
|
+
startDateTime
|
2505
|
+
endDateTime
|
2506
|
+
isAllDay
|
2507
|
+
timezone
|
2508
|
+
status
|
2509
|
+
visibility
|
2510
|
+
meetingLink
|
2511
|
+
organizer {
|
2512
|
+
name
|
2513
|
+
email
|
2514
|
+
isOptional
|
2515
|
+
isOrganizer
|
2516
|
+
responseStatus
|
2517
|
+
}
|
2518
|
+
attendees {
|
2519
|
+
name
|
2520
|
+
email
|
2521
|
+
isOptional
|
2522
|
+
isOrganizer
|
2523
|
+
responseStatus
|
2524
|
+
}
|
2525
|
+
categories
|
2526
|
+
reminders {
|
2527
|
+
minutesBefore
|
2528
|
+
method
|
2529
|
+
}
|
2530
|
+
recurrence {
|
2531
|
+
pattern
|
2532
|
+
interval
|
2533
|
+
count
|
2534
|
+
until
|
2535
|
+
daysOfWeek
|
2536
|
+
dayOfMonth
|
2537
|
+
monthOfYear
|
2538
|
+
}
|
2539
|
+
recurringEventIdentifier
|
2540
|
+
isRecurring
|
2541
|
+
}
|
2280
2542
|
issue {
|
2281
2543
|
identifier
|
2282
2544
|
title
|
@@ -2420,6 +2682,7 @@ export const QueryContentsObservations = gql `
|
|
2420
2682
|
latitude
|
2421
2683
|
longitude
|
2422
2684
|
}
|
2685
|
+
features
|
2423
2686
|
type
|
2424
2687
|
fileType
|
2425
2688
|
mimeType
|
@@ -2543,6 +2806,48 @@ export const QueryContentsObservations = gql `
|
|
2543
2806
|
familyName
|
2544
2807
|
}
|
2545
2808
|
}
|
2809
|
+
event {
|
2810
|
+
eventIdentifier
|
2811
|
+
calendarIdentifier
|
2812
|
+
subject
|
2813
|
+
startDateTime
|
2814
|
+
endDateTime
|
2815
|
+
isAllDay
|
2816
|
+
timezone
|
2817
|
+
status
|
2818
|
+
visibility
|
2819
|
+
meetingLink
|
2820
|
+
organizer {
|
2821
|
+
name
|
2822
|
+
email
|
2823
|
+
isOptional
|
2824
|
+
isOrganizer
|
2825
|
+
responseStatus
|
2826
|
+
}
|
2827
|
+
attendees {
|
2828
|
+
name
|
2829
|
+
email
|
2830
|
+
isOptional
|
2831
|
+
isOrganizer
|
2832
|
+
responseStatus
|
2833
|
+
}
|
2834
|
+
categories
|
2835
|
+
reminders {
|
2836
|
+
minutesBefore
|
2837
|
+
method
|
2838
|
+
}
|
2839
|
+
recurrence {
|
2840
|
+
pattern
|
2841
|
+
interval
|
2842
|
+
count
|
2843
|
+
until
|
2844
|
+
daysOfWeek
|
2845
|
+
dayOfMonth
|
2846
|
+
monthOfYear
|
2847
|
+
}
|
2848
|
+
recurringEventIdentifier
|
2849
|
+
isRecurring
|
2850
|
+
}
|
2546
2851
|
issue {
|
2547
2852
|
identifier
|
2548
2853
|
title
|
@@ -6060,13 +6365,16 @@ export const GetFeed = gql `
|
|
6060
6365
|
clientId
|
6061
6366
|
clientSecret
|
6062
6367
|
refreshToken
|
6368
|
+
connectorId
|
6063
6369
|
}
|
6064
6370
|
oneDrive {
|
6371
|
+
authenticationType
|
6065
6372
|
folderId
|
6066
6373
|
files
|
6067
6374
|
clientId
|
6068
6375
|
clientSecret
|
6069
6376
|
refreshToken
|
6377
|
+
connectorId
|
6070
6378
|
}
|
6071
6379
|
googleDrive {
|
6072
6380
|
authenticationType
|
@@ -6076,6 +6384,7 @@ export const GetFeed = gql `
|
|
6076
6384
|
clientId
|
6077
6385
|
clientSecret
|
6078
6386
|
serviceAccountJson
|
6387
|
+
connectorId
|
6079
6388
|
}
|
6080
6389
|
dropbox {
|
6081
6390
|
path
|
@@ -6092,11 +6401,13 @@ export const GetFeed = gql `
|
|
6092
6401
|
redirectUri
|
6093
6402
|
}
|
6094
6403
|
github {
|
6404
|
+
authenticationType
|
6095
6405
|
uri
|
6096
6406
|
repositoryOwner
|
6097
6407
|
repositoryName
|
6098
6408
|
refreshToken
|
6099
6409
|
personalAccessToken
|
6410
|
+
connectorId
|
6100
6411
|
}
|
6101
6412
|
readLimit
|
6102
6413
|
}
|
@@ -6109,9 +6420,11 @@ export const GetFeed = gql `
|
|
6109
6420
|
excludeSentItems
|
6110
6421
|
includeDeletedItems
|
6111
6422
|
inboxOnly
|
6423
|
+
authenticationType
|
6112
6424
|
refreshToken
|
6113
6425
|
clientId
|
6114
6426
|
clientSecret
|
6427
|
+
connectorId
|
6115
6428
|
}
|
6116
6429
|
microsoft {
|
6117
6430
|
type
|
@@ -6119,9 +6432,11 @@ export const GetFeed = gql `
|
|
6119
6432
|
excludeSentItems
|
6120
6433
|
includeDeletedItems
|
6121
6434
|
inboxOnly
|
6435
|
+
authenticationType
|
6122
6436
|
refreshToken
|
6123
6437
|
clientId
|
6124
6438
|
clientSecret
|
6439
|
+
connectorId
|
6125
6440
|
}
|
6126
6441
|
readLimit
|
6127
6442
|
}
|
@@ -6161,6 +6476,31 @@ export const GetFeed = gql `
|
|
6161
6476
|
}
|
6162
6477
|
readLimit
|
6163
6478
|
}
|
6479
|
+
calendar {
|
6480
|
+
type
|
6481
|
+
includeAttachments
|
6482
|
+
google {
|
6483
|
+
calendarId
|
6484
|
+
beforeDate
|
6485
|
+
afterDate
|
6486
|
+
authenticationType
|
6487
|
+
refreshToken
|
6488
|
+
clientId
|
6489
|
+
clientSecret
|
6490
|
+
connectorId
|
6491
|
+
}
|
6492
|
+
microsoft {
|
6493
|
+
calendarId
|
6494
|
+
beforeDate
|
6495
|
+
afterDate
|
6496
|
+
authenticationType
|
6497
|
+
refreshToken
|
6498
|
+
clientId
|
6499
|
+
clientSecret
|
6500
|
+
connectorId
|
6501
|
+
}
|
6502
|
+
readLimit
|
6503
|
+
}
|
6164
6504
|
rss {
|
6165
6505
|
readLimit
|
6166
6506
|
uri
|
@@ -6264,6 +6604,26 @@ export const IsFeedDone = gql `
|
|
6264
6604
|
}
|
6265
6605
|
}
|
6266
6606
|
`;
|
6607
|
+
export const QueryBoxFolders = gql `
|
6608
|
+
query QueryBoxFolders($properties: BoxFoldersInput!, $folderId: ID) {
|
6609
|
+
boxFolders(properties: $properties, folderId: $folderId) {
|
6610
|
+
results {
|
6611
|
+
folderName
|
6612
|
+
folderId
|
6613
|
+
}
|
6614
|
+
}
|
6615
|
+
}
|
6616
|
+
`;
|
6617
|
+
export const QueryDropboxFolders = gql `
|
6618
|
+
query QueryDropboxFolders($properties: DropboxFoldersInput!, $folderPath: String) {
|
6619
|
+
dropboxFolders(properties: $properties, folderPath: $folderPath) {
|
6620
|
+
results {
|
6621
|
+
folderName
|
6622
|
+
folderId
|
6623
|
+
}
|
6624
|
+
}
|
6625
|
+
}
|
6626
|
+
`;
|
6267
6627
|
export const QueryFeeds = gql `
|
6268
6628
|
query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
6269
6629
|
feeds(filter: $filter, correlationId: $correlationId) {
|
@@ -6315,13 +6675,16 @@ export const QueryFeeds = gql `
|
|
6315
6675
|
clientId
|
6316
6676
|
clientSecret
|
6317
6677
|
refreshToken
|
6678
|
+
connectorId
|
6318
6679
|
}
|
6319
6680
|
oneDrive {
|
6681
|
+
authenticationType
|
6320
6682
|
folderId
|
6321
6683
|
files
|
6322
6684
|
clientId
|
6323
6685
|
clientSecret
|
6324
6686
|
refreshToken
|
6687
|
+
connectorId
|
6325
6688
|
}
|
6326
6689
|
googleDrive {
|
6327
6690
|
authenticationType
|
@@ -6331,6 +6694,7 @@ export const QueryFeeds = gql `
|
|
6331
6694
|
clientId
|
6332
6695
|
clientSecret
|
6333
6696
|
serviceAccountJson
|
6697
|
+
connectorId
|
6334
6698
|
}
|
6335
6699
|
dropbox {
|
6336
6700
|
path
|
@@ -6347,11 +6711,13 @@ export const QueryFeeds = gql `
|
|
6347
6711
|
redirectUri
|
6348
6712
|
}
|
6349
6713
|
github {
|
6714
|
+
authenticationType
|
6350
6715
|
uri
|
6351
6716
|
repositoryOwner
|
6352
6717
|
repositoryName
|
6353
6718
|
refreshToken
|
6354
6719
|
personalAccessToken
|
6720
|
+
connectorId
|
6355
6721
|
}
|
6356
6722
|
readLimit
|
6357
6723
|
}
|
@@ -6364,9 +6730,11 @@ export const QueryFeeds = gql `
|
|
6364
6730
|
excludeSentItems
|
6365
6731
|
includeDeletedItems
|
6366
6732
|
inboxOnly
|
6733
|
+
authenticationType
|
6367
6734
|
refreshToken
|
6368
6735
|
clientId
|
6369
6736
|
clientSecret
|
6737
|
+
connectorId
|
6370
6738
|
}
|
6371
6739
|
microsoft {
|
6372
6740
|
type
|
@@ -6374,9 +6742,11 @@ export const QueryFeeds = gql `
|
|
6374
6742
|
excludeSentItems
|
6375
6743
|
includeDeletedItems
|
6376
6744
|
inboxOnly
|
6745
|
+
authenticationType
|
6377
6746
|
refreshToken
|
6378
6747
|
clientId
|
6379
6748
|
clientSecret
|
6749
|
+
connectorId
|
6380
6750
|
}
|
6381
6751
|
readLimit
|
6382
6752
|
}
|
@@ -6416,6 +6786,31 @@ export const QueryFeeds = gql `
|
|
6416
6786
|
}
|
6417
6787
|
readLimit
|
6418
6788
|
}
|
6789
|
+
calendar {
|
6790
|
+
type
|
6791
|
+
includeAttachments
|
6792
|
+
google {
|
6793
|
+
calendarId
|
6794
|
+
beforeDate
|
6795
|
+
afterDate
|
6796
|
+
authenticationType
|
6797
|
+
refreshToken
|
6798
|
+
clientId
|
6799
|
+
clientSecret
|
6800
|
+
connectorId
|
6801
|
+
}
|
6802
|
+
microsoft {
|
6803
|
+
calendarId
|
6804
|
+
beforeDate
|
6805
|
+
afterDate
|
6806
|
+
authenticationType
|
6807
|
+
refreshToken
|
6808
|
+
clientId
|
6809
|
+
clientSecret
|
6810
|
+
connectorId
|
6811
|
+
}
|
6812
|
+
readLimit
|
6813
|
+
}
|
6419
6814
|
rss {
|
6420
6815
|
readLimit
|
6421
6816
|
uri
|
@@ -6506,6 +6901,26 @@ export const QueryFeeds = gql `
|
|
6506
6901
|
}
|
6507
6902
|
}
|
6508
6903
|
`;
|
6904
|
+
export const QueryGoogleCalendars = gql `
|
6905
|
+
query QueryGoogleCalendars($properties: GoogleCalendarsInput!) {
|
6906
|
+
googleCalendars(properties: $properties) {
|
6907
|
+
results {
|
6908
|
+
calendarName
|
6909
|
+
calendarId
|
6910
|
+
}
|
6911
|
+
}
|
6912
|
+
}
|
6913
|
+
`;
|
6914
|
+
export const QueryGoogleDriveFolders = gql `
|
6915
|
+
query QueryGoogleDriveFolders($properties: GoogleDriveFoldersInput!, $folderId: ID) {
|
6916
|
+
googleDriveFolders(properties: $properties, folderId: $folderId) {
|
6917
|
+
results {
|
6918
|
+
folderName
|
6919
|
+
folderId
|
6920
|
+
}
|
6921
|
+
}
|
6922
|
+
}
|
6923
|
+
`;
|
6509
6924
|
export const QueryLinearProjects = gql `
|
6510
6925
|
query QueryLinearProjects($properties: LinearProjectsInput!) {
|
6511
6926
|
linearProjects(properties: $properties) {
|
@@ -6513,6 +6928,16 @@ export const QueryLinearProjects = gql `
|
|
6513
6928
|
}
|
6514
6929
|
}
|
6515
6930
|
`;
|
6931
|
+
export const QueryMicrosoftCalendars = gql `
|
6932
|
+
query QueryMicrosoftCalendars($properties: MicrosoftCalendarsInput!) {
|
6933
|
+
microsoftCalendars(properties: $properties) {
|
6934
|
+
results {
|
6935
|
+
calendarName
|
6936
|
+
calendarId
|
6937
|
+
}
|
6938
|
+
}
|
6939
|
+
}
|
6940
|
+
`;
|
6516
6941
|
export const QueryMicrosoftTeamsChannels = gql `
|
6517
6942
|
query QueryMicrosoftTeamsChannels($properties: MicrosoftTeamsChannelsInput!, $teamId: ID!) {
|
6518
6943
|
microsoftTeamsChannels(properties: $properties, teamId: $teamId) {
|
@@ -9180,6 +9605,9 @@ export const GetUser = gql `
|
|
9180
9605
|
clientId
|
9181
9606
|
clientSecret
|
9182
9607
|
}
|
9608
|
+
arcade {
|
9609
|
+
authorizationId
|
9610
|
+
}
|
9183
9611
|
}
|
9184
9612
|
integration {
|
9185
9613
|
type
|
@@ -9234,6 +9662,9 @@ export const GetUserByIdentifier = gql `
|
|
9234
9662
|
clientId
|
9235
9663
|
clientSecret
|
9236
9664
|
}
|
9665
|
+
arcade {
|
9666
|
+
authorizationId
|
9667
|
+
}
|
9237
9668
|
}
|
9238
9669
|
integration {
|
9239
9670
|
type
|
@@ -9289,6 +9720,9 @@ export const QueryUsers = gql `
|
|
9289
9720
|
clientId
|
9290
9721
|
clientSecret
|
9291
9722
|
}
|
9723
|
+
arcade {
|
9724
|
+
authorizationId
|
9725
|
+
}
|
9292
9726
|
}
|
9293
9727
|
integration {
|
9294
9728
|
type
|
@@ -9326,6 +9760,940 @@ export const UpdateUser = gql `
|
|
9326
9760
|
}
|
9327
9761
|
}
|
9328
9762
|
`;
|
9763
|
+
export const CountViews = gql `
|
9764
|
+
query CountViews($filter: ViewFilter, $correlationId: String) {
|
9765
|
+
countViews(filter: $filter, correlationId: $correlationId) {
|
9766
|
+
count
|
9767
|
+
}
|
9768
|
+
}
|
9769
|
+
`;
|
9770
|
+
export const CreateView = gql `
|
9771
|
+
mutation CreateView($view: ViewInput!) {
|
9772
|
+
createView(view: $view) {
|
9773
|
+
id
|
9774
|
+
name
|
9775
|
+
state
|
9776
|
+
type
|
9777
|
+
filter {
|
9778
|
+
dateRange {
|
9779
|
+
from
|
9780
|
+
to
|
9781
|
+
}
|
9782
|
+
inLast
|
9783
|
+
creationDateRange {
|
9784
|
+
from
|
9785
|
+
to
|
9786
|
+
}
|
9787
|
+
createdInLast
|
9788
|
+
types
|
9789
|
+
fileTypes
|
9790
|
+
formats
|
9791
|
+
fileExtensions
|
9792
|
+
similarContents {
|
9793
|
+
id
|
9794
|
+
}
|
9795
|
+
contents {
|
9796
|
+
id
|
9797
|
+
}
|
9798
|
+
feeds {
|
9799
|
+
id
|
9800
|
+
}
|
9801
|
+
workflows {
|
9802
|
+
id
|
9803
|
+
}
|
9804
|
+
collections {
|
9805
|
+
id
|
9806
|
+
}
|
9807
|
+
users {
|
9808
|
+
id
|
9809
|
+
}
|
9810
|
+
observations {
|
9811
|
+
type
|
9812
|
+
observable {
|
9813
|
+
id
|
9814
|
+
}
|
9815
|
+
states
|
9816
|
+
}
|
9817
|
+
or {
|
9818
|
+
feeds {
|
9819
|
+
id
|
9820
|
+
}
|
9821
|
+
workflows {
|
9822
|
+
id
|
9823
|
+
}
|
9824
|
+
collections {
|
9825
|
+
id
|
9826
|
+
}
|
9827
|
+
users {
|
9828
|
+
id
|
9829
|
+
}
|
9830
|
+
observations {
|
9831
|
+
type
|
9832
|
+
observable {
|
9833
|
+
id
|
9834
|
+
}
|
9835
|
+
states
|
9836
|
+
}
|
9837
|
+
}
|
9838
|
+
and {
|
9839
|
+
feeds {
|
9840
|
+
id
|
9841
|
+
}
|
9842
|
+
workflows {
|
9843
|
+
id
|
9844
|
+
}
|
9845
|
+
collections {
|
9846
|
+
id
|
9847
|
+
}
|
9848
|
+
users {
|
9849
|
+
id
|
9850
|
+
}
|
9851
|
+
observations {
|
9852
|
+
type
|
9853
|
+
observable {
|
9854
|
+
id
|
9855
|
+
}
|
9856
|
+
states
|
9857
|
+
}
|
9858
|
+
}
|
9859
|
+
}
|
9860
|
+
augmentedFilter {
|
9861
|
+
dateRange {
|
9862
|
+
from
|
9863
|
+
to
|
9864
|
+
}
|
9865
|
+
inLast
|
9866
|
+
creationDateRange {
|
9867
|
+
from
|
9868
|
+
to
|
9869
|
+
}
|
9870
|
+
createdInLast
|
9871
|
+
types
|
9872
|
+
fileTypes
|
9873
|
+
formats
|
9874
|
+
fileExtensions
|
9875
|
+
similarContents {
|
9876
|
+
id
|
9877
|
+
}
|
9878
|
+
contents {
|
9879
|
+
id
|
9880
|
+
}
|
9881
|
+
feeds {
|
9882
|
+
id
|
9883
|
+
}
|
9884
|
+
workflows {
|
9885
|
+
id
|
9886
|
+
}
|
9887
|
+
collections {
|
9888
|
+
id
|
9889
|
+
}
|
9890
|
+
users {
|
9891
|
+
id
|
9892
|
+
}
|
9893
|
+
observations {
|
9894
|
+
type
|
9895
|
+
observable {
|
9896
|
+
id
|
9897
|
+
}
|
9898
|
+
states
|
9899
|
+
}
|
9900
|
+
or {
|
9901
|
+
feeds {
|
9902
|
+
id
|
9903
|
+
}
|
9904
|
+
workflows {
|
9905
|
+
id
|
9906
|
+
}
|
9907
|
+
collections {
|
9908
|
+
id
|
9909
|
+
}
|
9910
|
+
users {
|
9911
|
+
id
|
9912
|
+
}
|
9913
|
+
observations {
|
9914
|
+
type
|
9915
|
+
observable {
|
9916
|
+
id
|
9917
|
+
}
|
9918
|
+
states
|
9919
|
+
}
|
9920
|
+
}
|
9921
|
+
and {
|
9922
|
+
feeds {
|
9923
|
+
id
|
9924
|
+
}
|
9925
|
+
workflows {
|
9926
|
+
id
|
9927
|
+
}
|
9928
|
+
collections {
|
9929
|
+
id
|
9930
|
+
}
|
9931
|
+
users {
|
9932
|
+
id
|
9933
|
+
}
|
9934
|
+
observations {
|
9935
|
+
type
|
9936
|
+
observable {
|
9937
|
+
id
|
9938
|
+
}
|
9939
|
+
states
|
9940
|
+
}
|
9941
|
+
}
|
9942
|
+
}
|
9943
|
+
}
|
9944
|
+
}
|
9945
|
+
`;
|
9946
|
+
export const DeleteAllViews = gql `
|
9947
|
+
mutation DeleteAllViews($filter: ViewFilter, $isSynchronous: Boolean, $correlationId: String) {
|
9948
|
+
deleteAllViews(
|
9949
|
+
filter: $filter
|
9950
|
+
isSynchronous: $isSynchronous
|
9951
|
+
correlationId: $correlationId
|
9952
|
+
) {
|
9953
|
+
id
|
9954
|
+
state
|
9955
|
+
}
|
9956
|
+
}
|
9957
|
+
`;
|
9958
|
+
export const DeleteView = gql `
|
9959
|
+
mutation DeleteView($id: ID!) {
|
9960
|
+
deleteView(id: $id) {
|
9961
|
+
id
|
9962
|
+
state
|
9963
|
+
}
|
9964
|
+
}
|
9965
|
+
`;
|
9966
|
+
export const DeleteViews = gql `
|
9967
|
+
mutation DeleteViews($ids: [ID!]!, $isSynchronous: Boolean) {
|
9968
|
+
deleteViews(ids: $ids, isSynchronous: $isSynchronous) {
|
9969
|
+
id
|
9970
|
+
state
|
9971
|
+
}
|
9972
|
+
}
|
9973
|
+
`;
|
9974
|
+
export const GetView = gql `
|
9975
|
+
query GetView($id: ID!, $correlationId: String) {
|
9976
|
+
view(id: $id, correlationId: $correlationId) {
|
9977
|
+
id
|
9978
|
+
name
|
9979
|
+
creationDate
|
9980
|
+
relevance
|
9981
|
+
owner {
|
9982
|
+
id
|
9983
|
+
}
|
9984
|
+
state
|
9985
|
+
type
|
9986
|
+
filter {
|
9987
|
+
dateRange {
|
9988
|
+
from
|
9989
|
+
to
|
9990
|
+
}
|
9991
|
+
inLast
|
9992
|
+
creationDateRange {
|
9993
|
+
from
|
9994
|
+
to
|
9995
|
+
}
|
9996
|
+
createdInLast
|
9997
|
+
types
|
9998
|
+
fileTypes
|
9999
|
+
formats
|
10000
|
+
fileExtensions
|
10001
|
+
similarContents {
|
10002
|
+
id
|
10003
|
+
}
|
10004
|
+
contents {
|
10005
|
+
id
|
10006
|
+
}
|
10007
|
+
feeds {
|
10008
|
+
id
|
10009
|
+
}
|
10010
|
+
workflows {
|
10011
|
+
id
|
10012
|
+
}
|
10013
|
+
collections {
|
10014
|
+
id
|
10015
|
+
}
|
10016
|
+
users {
|
10017
|
+
id
|
10018
|
+
}
|
10019
|
+
observations {
|
10020
|
+
type
|
10021
|
+
observable {
|
10022
|
+
id
|
10023
|
+
}
|
10024
|
+
states
|
10025
|
+
}
|
10026
|
+
or {
|
10027
|
+
feeds {
|
10028
|
+
id
|
10029
|
+
}
|
10030
|
+
workflows {
|
10031
|
+
id
|
10032
|
+
}
|
10033
|
+
collections {
|
10034
|
+
id
|
10035
|
+
}
|
10036
|
+
users {
|
10037
|
+
id
|
10038
|
+
}
|
10039
|
+
observations {
|
10040
|
+
type
|
10041
|
+
observable {
|
10042
|
+
id
|
10043
|
+
}
|
10044
|
+
states
|
10045
|
+
}
|
10046
|
+
}
|
10047
|
+
and {
|
10048
|
+
feeds {
|
10049
|
+
id
|
10050
|
+
}
|
10051
|
+
workflows {
|
10052
|
+
id
|
10053
|
+
}
|
10054
|
+
collections {
|
10055
|
+
id
|
10056
|
+
}
|
10057
|
+
users {
|
10058
|
+
id
|
10059
|
+
}
|
10060
|
+
observations {
|
10061
|
+
type
|
10062
|
+
observable {
|
10063
|
+
id
|
10064
|
+
}
|
10065
|
+
states
|
10066
|
+
}
|
10067
|
+
}
|
10068
|
+
}
|
10069
|
+
augmentedFilter {
|
10070
|
+
dateRange {
|
10071
|
+
from
|
10072
|
+
to
|
10073
|
+
}
|
10074
|
+
inLast
|
10075
|
+
creationDateRange {
|
10076
|
+
from
|
10077
|
+
to
|
10078
|
+
}
|
10079
|
+
createdInLast
|
10080
|
+
types
|
10081
|
+
fileTypes
|
10082
|
+
formats
|
10083
|
+
fileExtensions
|
10084
|
+
similarContents {
|
10085
|
+
id
|
10086
|
+
}
|
10087
|
+
contents {
|
10088
|
+
id
|
10089
|
+
}
|
10090
|
+
feeds {
|
10091
|
+
id
|
10092
|
+
}
|
10093
|
+
workflows {
|
10094
|
+
id
|
10095
|
+
}
|
10096
|
+
collections {
|
10097
|
+
id
|
10098
|
+
}
|
10099
|
+
users {
|
10100
|
+
id
|
10101
|
+
}
|
10102
|
+
observations {
|
10103
|
+
type
|
10104
|
+
observable {
|
10105
|
+
id
|
10106
|
+
}
|
10107
|
+
states
|
10108
|
+
}
|
10109
|
+
or {
|
10110
|
+
feeds {
|
10111
|
+
id
|
10112
|
+
}
|
10113
|
+
workflows {
|
10114
|
+
id
|
10115
|
+
}
|
10116
|
+
collections {
|
10117
|
+
id
|
10118
|
+
}
|
10119
|
+
users {
|
10120
|
+
id
|
10121
|
+
}
|
10122
|
+
observations {
|
10123
|
+
type
|
10124
|
+
observable {
|
10125
|
+
id
|
10126
|
+
}
|
10127
|
+
states
|
10128
|
+
}
|
10129
|
+
}
|
10130
|
+
and {
|
10131
|
+
feeds {
|
10132
|
+
id
|
10133
|
+
}
|
10134
|
+
workflows {
|
10135
|
+
id
|
10136
|
+
}
|
10137
|
+
collections {
|
10138
|
+
id
|
10139
|
+
}
|
10140
|
+
users {
|
10141
|
+
id
|
10142
|
+
}
|
10143
|
+
observations {
|
10144
|
+
type
|
10145
|
+
observable {
|
10146
|
+
id
|
10147
|
+
}
|
10148
|
+
states
|
10149
|
+
}
|
10150
|
+
}
|
10151
|
+
}
|
10152
|
+
}
|
10153
|
+
}
|
10154
|
+
`;
|
10155
|
+
export const QueryViews = gql `
|
10156
|
+
query QueryViews($filter: ViewFilter, $correlationId: String) {
|
10157
|
+
views(filter: $filter, correlationId: $correlationId) {
|
10158
|
+
results {
|
10159
|
+
id
|
10160
|
+
name
|
10161
|
+
creationDate
|
10162
|
+
relevance
|
10163
|
+
owner {
|
10164
|
+
id
|
10165
|
+
}
|
10166
|
+
state
|
10167
|
+
type
|
10168
|
+
filter {
|
10169
|
+
dateRange {
|
10170
|
+
from
|
10171
|
+
to
|
10172
|
+
}
|
10173
|
+
inLast
|
10174
|
+
creationDateRange {
|
10175
|
+
from
|
10176
|
+
to
|
10177
|
+
}
|
10178
|
+
createdInLast
|
10179
|
+
types
|
10180
|
+
fileTypes
|
10181
|
+
formats
|
10182
|
+
fileExtensions
|
10183
|
+
similarContents {
|
10184
|
+
id
|
10185
|
+
}
|
10186
|
+
contents {
|
10187
|
+
id
|
10188
|
+
}
|
10189
|
+
feeds {
|
10190
|
+
id
|
10191
|
+
}
|
10192
|
+
workflows {
|
10193
|
+
id
|
10194
|
+
}
|
10195
|
+
collections {
|
10196
|
+
id
|
10197
|
+
}
|
10198
|
+
users {
|
10199
|
+
id
|
10200
|
+
}
|
10201
|
+
observations {
|
10202
|
+
type
|
10203
|
+
observable {
|
10204
|
+
id
|
10205
|
+
}
|
10206
|
+
states
|
10207
|
+
}
|
10208
|
+
or {
|
10209
|
+
feeds {
|
10210
|
+
id
|
10211
|
+
}
|
10212
|
+
workflows {
|
10213
|
+
id
|
10214
|
+
}
|
10215
|
+
collections {
|
10216
|
+
id
|
10217
|
+
}
|
10218
|
+
users {
|
10219
|
+
id
|
10220
|
+
}
|
10221
|
+
observations {
|
10222
|
+
type
|
10223
|
+
observable {
|
10224
|
+
id
|
10225
|
+
}
|
10226
|
+
states
|
10227
|
+
}
|
10228
|
+
}
|
10229
|
+
and {
|
10230
|
+
feeds {
|
10231
|
+
id
|
10232
|
+
}
|
10233
|
+
workflows {
|
10234
|
+
id
|
10235
|
+
}
|
10236
|
+
collections {
|
10237
|
+
id
|
10238
|
+
}
|
10239
|
+
users {
|
10240
|
+
id
|
10241
|
+
}
|
10242
|
+
observations {
|
10243
|
+
type
|
10244
|
+
observable {
|
10245
|
+
id
|
10246
|
+
}
|
10247
|
+
states
|
10248
|
+
}
|
10249
|
+
}
|
10250
|
+
}
|
10251
|
+
augmentedFilter {
|
10252
|
+
dateRange {
|
10253
|
+
from
|
10254
|
+
to
|
10255
|
+
}
|
10256
|
+
inLast
|
10257
|
+
creationDateRange {
|
10258
|
+
from
|
10259
|
+
to
|
10260
|
+
}
|
10261
|
+
createdInLast
|
10262
|
+
types
|
10263
|
+
fileTypes
|
10264
|
+
formats
|
10265
|
+
fileExtensions
|
10266
|
+
similarContents {
|
10267
|
+
id
|
10268
|
+
}
|
10269
|
+
contents {
|
10270
|
+
id
|
10271
|
+
}
|
10272
|
+
feeds {
|
10273
|
+
id
|
10274
|
+
}
|
10275
|
+
workflows {
|
10276
|
+
id
|
10277
|
+
}
|
10278
|
+
collections {
|
10279
|
+
id
|
10280
|
+
}
|
10281
|
+
users {
|
10282
|
+
id
|
10283
|
+
}
|
10284
|
+
observations {
|
10285
|
+
type
|
10286
|
+
observable {
|
10287
|
+
id
|
10288
|
+
}
|
10289
|
+
states
|
10290
|
+
}
|
10291
|
+
or {
|
10292
|
+
feeds {
|
10293
|
+
id
|
10294
|
+
}
|
10295
|
+
workflows {
|
10296
|
+
id
|
10297
|
+
}
|
10298
|
+
collections {
|
10299
|
+
id
|
10300
|
+
}
|
10301
|
+
users {
|
10302
|
+
id
|
10303
|
+
}
|
10304
|
+
observations {
|
10305
|
+
type
|
10306
|
+
observable {
|
10307
|
+
id
|
10308
|
+
}
|
10309
|
+
states
|
10310
|
+
}
|
10311
|
+
}
|
10312
|
+
and {
|
10313
|
+
feeds {
|
10314
|
+
id
|
10315
|
+
}
|
10316
|
+
workflows {
|
10317
|
+
id
|
10318
|
+
}
|
10319
|
+
collections {
|
10320
|
+
id
|
10321
|
+
}
|
10322
|
+
users {
|
10323
|
+
id
|
10324
|
+
}
|
10325
|
+
observations {
|
10326
|
+
type
|
10327
|
+
observable {
|
10328
|
+
id
|
10329
|
+
}
|
10330
|
+
states
|
10331
|
+
}
|
10332
|
+
}
|
10333
|
+
}
|
10334
|
+
}
|
10335
|
+
}
|
10336
|
+
}
|
10337
|
+
`;
|
10338
|
+
export const UpdateView = gql `
|
10339
|
+
mutation UpdateView($view: ViewUpdateInput!) {
|
10340
|
+
updateView(view: $view) {
|
10341
|
+
id
|
10342
|
+
name
|
10343
|
+
state
|
10344
|
+
type
|
10345
|
+
filter {
|
10346
|
+
dateRange {
|
10347
|
+
from
|
10348
|
+
to
|
10349
|
+
}
|
10350
|
+
inLast
|
10351
|
+
creationDateRange {
|
10352
|
+
from
|
10353
|
+
to
|
10354
|
+
}
|
10355
|
+
createdInLast
|
10356
|
+
types
|
10357
|
+
fileTypes
|
10358
|
+
formats
|
10359
|
+
fileExtensions
|
10360
|
+
similarContents {
|
10361
|
+
id
|
10362
|
+
}
|
10363
|
+
contents {
|
10364
|
+
id
|
10365
|
+
}
|
10366
|
+
feeds {
|
10367
|
+
id
|
10368
|
+
}
|
10369
|
+
workflows {
|
10370
|
+
id
|
10371
|
+
}
|
10372
|
+
collections {
|
10373
|
+
id
|
10374
|
+
}
|
10375
|
+
users {
|
10376
|
+
id
|
10377
|
+
}
|
10378
|
+
observations {
|
10379
|
+
type
|
10380
|
+
observable {
|
10381
|
+
id
|
10382
|
+
}
|
10383
|
+
states
|
10384
|
+
}
|
10385
|
+
or {
|
10386
|
+
feeds {
|
10387
|
+
id
|
10388
|
+
}
|
10389
|
+
workflows {
|
10390
|
+
id
|
10391
|
+
}
|
10392
|
+
collections {
|
10393
|
+
id
|
10394
|
+
}
|
10395
|
+
users {
|
10396
|
+
id
|
10397
|
+
}
|
10398
|
+
observations {
|
10399
|
+
type
|
10400
|
+
observable {
|
10401
|
+
id
|
10402
|
+
}
|
10403
|
+
states
|
10404
|
+
}
|
10405
|
+
}
|
10406
|
+
and {
|
10407
|
+
feeds {
|
10408
|
+
id
|
10409
|
+
}
|
10410
|
+
workflows {
|
10411
|
+
id
|
10412
|
+
}
|
10413
|
+
collections {
|
10414
|
+
id
|
10415
|
+
}
|
10416
|
+
users {
|
10417
|
+
id
|
10418
|
+
}
|
10419
|
+
observations {
|
10420
|
+
type
|
10421
|
+
observable {
|
10422
|
+
id
|
10423
|
+
}
|
10424
|
+
states
|
10425
|
+
}
|
10426
|
+
}
|
10427
|
+
}
|
10428
|
+
augmentedFilter {
|
10429
|
+
dateRange {
|
10430
|
+
from
|
10431
|
+
to
|
10432
|
+
}
|
10433
|
+
inLast
|
10434
|
+
creationDateRange {
|
10435
|
+
from
|
10436
|
+
to
|
10437
|
+
}
|
10438
|
+
createdInLast
|
10439
|
+
types
|
10440
|
+
fileTypes
|
10441
|
+
formats
|
10442
|
+
fileExtensions
|
10443
|
+
similarContents {
|
10444
|
+
id
|
10445
|
+
}
|
10446
|
+
contents {
|
10447
|
+
id
|
10448
|
+
}
|
10449
|
+
feeds {
|
10450
|
+
id
|
10451
|
+
}
|
10452
|
+
workflows {
|
10453
|
+
id
|
10454
|
+
}
|
10455
|
+
collections {
|
10456
|
+
id
|
10457
|
+
}
|
10458
|
+
users {
|
10459
|
+
id
|
10460
|
+
}
|
10461
|
+
observations {
|
10462
|
+
type
|
10463
|
+
observable {
|
10464
|
+
id
|
10465
|
+
}
|
10466
|
+
states
|
10467
|
+
}
|
10468
|
+
or {
|
10469
|
+
feeds {
|
10470
|
+
id
|
10471
|
+
}
|
10472
|
+
workflows {
|
10473
|
+
id
|
10474
|
+
}
|
10475
|
+
collections {
|
10476
|
+
id
|
10477
|
+
}
|
10478
|
+
users {
|
10479
|
+
id
|
10480
|
+
}
|
10481
|
+
observations {
|
10482
|
+
type
|
10483
|
+
observable {
|
10484
|
+
id
|
10485
|
+
}
|
10486
|
+
states
|
10487
|
+
}
|
10488
|
+
}
|
10489
|
+
and {
|
10490
|
+
feeds {
|
10491
|
+
id
|
10492
|
+
}
|
10493
|
+
workflows {
|
10494
|
+
id
|
10495
|
+
}
|
10496
|
+
collections {
|
10497
|
+
id
|
10498
|
+
}
|
10499
|
+
users {
|
10500
|
+
id
|
10501
|
+
}
|
10502
|
+
observations {
|
10503
|
+
type
|
10504
|
+
observable {
|
10505
|
+
id
|
10506
|
+
}
|
10507
|
+
states
|
10508
|
+
}
|
10509
|
+
}
|
10510
|
+
}
|
10511
|
+
}
|
10512
|
+
}
|
10513
|
+
`;
|
10514
|
+
export const UpsertView = gql `
|
10515
|
+
mutation UpsertView($view: ViewInput!) {
|
10516
|
+
upsertView(view: $view) {
|
10517
|
+
id
|
10518
|
+
name
|
10519
|
+
state
|
10520
|
+
type
|
10521
|
+
filter {
|
10522
|
+
dateRange {
|
10523
|
+
from
|
10524
|
+
to
|
10525
|
+
}
|
10526
|
+
inLast
|
10527
|
+
creationDateRange {
|
10528
|
+
from
|
10529
|
+
to
|
10530
|
+
}
|
10531
|
+
createdInLast
|
10532
|
+
types
|
10533
|
+
fileTypes
|
10534
|
+
formats
|
10535
|
+
fileExtensions
|
10536
|
+
similarContents {
|
10537
|
+
id
|
10538
|
+
}
|
10539
|
+
contents {
|
10540
|
+
id
|
10541
|
+
}
|
10542
|
+
feeds {
|
10543
|
+
id
|
10544
|
+
}
|
10545
|
+
workflows {
|
10546
|
+
id
|
10547
|
+
}
|
10548
|
+
collections {
|
10549
|
+
id
|
10550
|
+
}
|
10551
|
+
users {
|
10552
|
+
id
|
10553
|
+
}
|
10554
|
+
observations {
|
10555
|
+
type
|
10556
|
+
observable {
|
10557
|
+
id
|
10558
|
+
}
|
10559
|
+
states
|
10560
|
+
}
|
10561
|
+
or {
|
10562
|
+
feeds {
|
10563
|
+
id
|
10564
|
+
}
|
10565
|
+
workflows {
|
10566
|
+
id
|
10567
|
+
}
|
10568
|
+
collections {
|
10569
|
+
id
|
10570
|
+
}
|
10571
|
+
users {
|
10572
|
+
id
|
10573
|
+
}
|
10574
|
+
observations {
|
10575
|
+
type
|
10576
|
+
observable {
|
10577
|
+
id
|
10578
|
+
}
|
10579
|
+
states
|
10580
|
+
}
|
10581
|
+
}
|
10582
|
+
and {
|
10583
|
+
feeds {
|
10584
|
+
id
|
10585
|
+
}
|
10586
|
+
workflows {
|
10587
|
+
id
|
10588
|
+
}
|
10589
|
+
collections {
|
10590
|
+
id
|
10591
|
+
}
|
10592
|
+
users {
|
10593
|
+
id
|
10594
|
+
}
|
10595
|
+
observations {
|
10596
|
+
type
|
10597
|
+
observable {
|
10598
|
+
id
|
10599
|
+
}
|
10600
|
+
states
|
10601
|
+
}
|
10602
|
+
}
|
10603
|
+
}
|
10604
|
+
augmentedFilter {
|
10605
|
+
dateRange {
|
10606
|
+
from
|
10607
|
+
to
|
10608
|
+
}
|
10609
|
+
inLast
|
10610
|
+
creationDateRange {
|
10611
|
+
from
|
10612
|
+
to
|
10613
|
+
}
|
10614
|
+
createdInLast
|
10615
|
+
types
|
10616
|
+
fileTypes
|
10617
|
+
formats
|
10618
|
+
fileExtensions
|
10619
|
+
similarContents {
|
10620
|
+
id
|
10621
|
+
}
|
10622
|
+
contents {
|
10623
|
+
id
|
10624
|
+
}
|
10625
|
+
feeds {
|
10626
|
+
id
|
10627
|
+
}
|
10628
|
+
workflows {
|
10629
|
+
id
|
10630
|
+
}
|
10631
|
+
collections {
|
10632
|
+
id
|
10633
|
+
}
|
10634
|
+
users {
|
10635
|
+
id
|
10636
|
+
}
|
10637
|
+
observations {
|
10638
|
+
type
|
10639
|
+
observable {
|
10640
|
+
id
|
10641
|
+
}
|
10642
|
+
states
|
10643
|
+
}
|
10644
|
+
or {
|
10645
|
+
feeds {
|
10646
|
+
id
|
10647
|
+
}
|
10648
|
+
workflows {
|
10649
|
+
id
|
10650
|
+
}
|
10651
|
+
collections {
|
10652
|
+
id
|
10653
|
+
}
|
10654
|
+
users {
|
10655
|
+
id
|
10656
|
+
}
|
10657
|
+
observations {
|
10658
|
+
type
|
10659
|
+
observable {
|
10660
|
+
id
|
10661
|
+
}
|
10662
|
+
states
|
10663
|
+
}
|
10664
|
+
}
|
10665
|
+
and {
|
10666
|
+
feeds {
|
10667
|
+
id
|
10668
|
+
}
|
10669
|
+
workflows {
|
10670
|
+
id
|
10671
|
+
}
|
10672
|
+
collections {
|
10673
|
+
id
|
10674
|
+
}
|
10675
|
+
users {
|
10676
|
+
id
|
10677
|
+
}
|
10678
|
+
observations {
|
10679
|
+
type
|
10680
|
+
observable {
|
10681
|
+
id
|
10682
|
+
}
|
10683
|
+
states
|
10684
|
+
}
|
10685
|
+
}
|
10686
|
+
}
|
10687
|
+
}
|
10688
|
+
}
|
10689
|
+
`;
|
10690
|
+
export const ViewExists = gql `
|
10691
|
+
query ViewExists($filter: ViewFilter, $correlationId: String) {
|
10692
|
+
viewExists(filter: $filter, correlationId: $correlationId) {
|
10693
|
+
result
|
10694
|
+
}
|
10695
|
+
}
|
10696
|
+
`;
|
9329
10697
|
export const CountWorkflows = gql `
|
9330
10698
|
query CountWorkflows($filter: WorkflowFilter, $correlationId: String) {
|
9331
10699
|
countWorkflows(filter: $filter, correlationId: $correlationId) {
|
@@ -9500,6 +10868,8 @@ export const CreateWorkflow = gql `
|
|
9500
10868
|
excludedLinks
|
9501
10869
|
allowedFiles
|
9502
10870
|
excludedFiles
|
10871
|
+
allowedContentTypes
|
10872
|
+
excludedContentTypes
|
9503
10873
|
allowContentDomain
|
9504
10874
|
maximumLinks
|
9505
10875
|
}
|
@@ -9746,6 +11116,8 @@ export const GetWorkflow = gql `
|
|
9746
11116
|
excludedLinks
|
9747
11117
|
allowedFiles
|
9748
11118
|
excludedFiles
|
11119
|
+
allowedContentTypes
|
11120
|
+
excludedContentTypes
|
9749
11121
|
allowContentDomain
|
9750
11122
|
maximumLinks
|
9751
11123
|
}
|
@@ -9965,6 +11337,8 @@ export const QueryWorkflows = gql `
|
|
9965
11337
|
excludedLinks
|
9966
11338
|
allowedFiles
|
9967
11339
|
excludedFiles
|
11340
|
+
allowedContentTypes
|
11341
|
+
excludedContentTypes
|
9968
11342
|
allowContentDomain
|
9969
11343
|
maximumLinks
|
9970
11344
|
}
|
@@ -10179,6 +11553,8 @@ export const UpdateWorkflow = gql `
|
|
10179
11553
|
excludedLinks
|
10180
11554
|
allowedFiles
|
10181
11555
|
excludedFiles
|
11556
|
+
allowedContentTypes
|
11557
|
+
excludedContentTypes
|
10182
11558
|
allowContentDomain
|
10183
11559
|
maximumLinks
|
10184
11560
|
}
|
@@ -10392,6 +11768,8 @@ export const UpsertWorkflow = gql `
|
|
10392
11768
|
excludedLinks
|
10393
11769
|
allowedFiles
|
10394
11770
|
excludedFiles
|
11771
|
+
allowedContentTypes
|
11772
|
+
excludedContentTypes
|
10395
11773
|
allowContentDomain
|
10396
11774
|
maximumLinks
|
10397
11775
|
}
|