graphlit-client 1.0.20250625001 → 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 +21 -1
- package/dist/client.js +265 -55
- package/dist/generated/graphql-documents.d.ts +16 -0
- package/dist/generated/graphql-documents.js +1116 -0
- package/dist/generated/graphql-types.d.ts +1884 -85
- package/dist/generated/graphql-types.js +51 -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) {
|
@@ -6230,13 +6365,16 @@ export const GetFeed = gql `
|
|
6230
6365
|
clientId
|
6231
6366
|
clientSecret
|
6232
6367
|
refreshToken
|
6368
|
+
connectorId
|
6233
6369
|
}
|
6234
6370
|
oneDrive {
|
6371
|
+
authenticationType
|
6235
6372
|
folderId
|
6236
6373
|
files
|
6237
6374
|
clientId
|
6238
6375
|
clientSecret
|
6239
6376
|
refreshToken
|
6377
|
+
connectorId
|
6240
6378
|
}
|
6241
6379
|
googleDrive {
|
6242
6380
|
authenticationType
|
@@ -6246,6 +6384,7 @@ export const GetFeed = gql `
|
|
6246
6384
|
clientId
|
6247
6385
|
clientSecret
|
6248
6386
|
serviceAccountJson
|
6387
|
+
connectorId
|
6249
6388
|
}
|
6250
6389
|
dropbox {
|
6251
6390
|
path
|
@@ -6262,11 +6401,13 @@ export const GetFeed = gql `
|
|
6262
6401
|
redirectUri
|
6263
6402
|
}
|
6264
6403
|
github {
|
6404
|
+
authenticationType
|
6265
6405
|
uri
|
6266
6406
|
repositoryOwner
|
6267
6407
|
repositoryName
|
6268
6408
|
refreshToken
|
6269
6409
|
personalAccessToken
|
6410
|
+
connectorId
|
6270
6411
|
}
|
6271
6412
|
readLimit
|
6272
6413
|
}
|
@@ -6279,9 +6420,11 @@ export const GetFeed = gql `
|
|
6279
6420
|
excludeSentItems
|
6280
6421
|
includeDeletedItems
|
6281
6422
|
inboxOnly
|
6423
|
+
authenticationType
|
6282
6424
|
refreshToken
|
6283
6425
|
clientId
|
6284
6426
|
clientSecret
|
6427
|
+
connectorId
|
6285
6428
|
}
|
6286
6429
|
microsoft {
|
6287
6430
|
type
|
@@ -6289,9 +6432,11 @@ export const GetFeed = gql `
|
|
6289
6432
|
excludeSentItems
|
6290
6433
|
includeDeletedItems
|
6291
6434
|
inboxOnly
|
6435
|
+
authenticationType
|
6292
6436
|
refreshToken
|
6293
6437
|
clientId
|
6294
6438
|
clientSecret
|
6439
|
+
connectorId
|
6295
6440
|
}
|
6296
6441
|
readLimit
|
6297
6442
|
}
|
@@ -6338,17 +6483,21 @@ export const GetFeed = gql `
|
|
6338
6483
|
calendarId
|
6339
6484
|
beforeDate
|
6340
6485
|
afterDate
|
6486
|
+
authenticationType
|
6341
6487
|
refreshToken
|
6342
6488
|
clientId
|
6343
6489
|
clientSecret
|
6490
|
+
connectorId
|
6344
6491
|
}
|
6345
6492
|
microsoft {
|
6346
6493
|
calendarId
|
6347
6494
|
beforeDate
|
6348
6495
|
afterDate
|
6496
|
+
authenticationType
|
6349
6497
|
refreshToken
|
6350
6498
|
clientId
|
6351
6499
|
clientSecret
|
6500
|
+
connectorId
|
6352
6501
|
}
|
6353
6502
|
readLimit
|
6354
6503
|
}
|
@@ -6526,13 +6675,16 @@ export const QueryFeeds = gql `
|
|
6526
6675
|
clientId
|
6527
6676
|
clientSecret
|
6528
6677
|
refreshToken
|
6678
|
+
connectorId
|
6529
6679
|
}
|
6530
6680
|
oneDrive {
|
6681
|
+
authenticationType
|
6531
6682
|
folderId
|
6532
6683
|
files
|
6533
6684
|
clientId
|
6534
6685
|
clientSecret
|
6535
6686
|
refreshToken
|
6687
|
+
connectorId
|
6536
6688
|
}
|
6537
6689
|
googleDrive {
|
6538
6690
|
authenticationType
|
@@ -6542,6 +6694,7 @@ export const QueryFeeds = gql `
|
|
6542
6694
|
clientId
|
6543
6695
|
clientSecret
|
6544
6696
|
serviceAccountJson
|
6697
|
+
connectorId
|
6545
6698
|
}
|
6546
6699
|
dropbox {
|
6547
6700
|
path
|
@@ -6558,11 +6711,13 @@ export const QueryFeeds = gql `
|
|
6558
6711
|
redirectUri
|
6559
6712
|
}
|
6560
6713
|
github {
|
6714
|
+
authenticationType
|
6561
6715
|
uri
|
6562
6716
|
repositoryOwner
|
6563
6717
|
repositoryName
|
6564
6718
|
refreshToken
|
6565
6719
|
personalAccessToken
|
6720
|
+
connectorId
|
6566
6721
|
}
|
6567
6722
|
readLimit
|
6568
6723
|
}
|
@@ -6575,9 +6730,11 @@ export const QueryFeeds = gql `
|
|
6575
6730
|
excludeSentItems
|
6576
6731
|
includeDeletedItems
|
6577
6732
|
inboxOnly
|
6733
|
+
authenticationType
|
6578
6734
|
refreshToken
|
6579
6735
|
clientId
|
6580
6736
|
clientSecret
|
6737
|
+
connectorId
|
6581
6738
|
}
|
6582
6739
|
microsoft {
|
6583
6740
|
type
|
@@ -6585,9 +6742,11 @@ export const QueryFeeds = gql `
|
|
6585
6742
|
excludeSentItems
|
6586
6743
|
includeDeletedItems
|
6587
6744
|
inboxOnly
|
6745
|
+
authenticationType
|
6588
6746
|
refreshToken
|
6589
6747
|
clientId
|
6590
6748
|
clientSecret
|
6749
|
+
connectorId
|
6591
6750
|
}
|
6592
6751
|
readLimit
|
6593
6752
|
}
|
@@ -6634,17 +6793,21 @@ export const QueryFeeds = gql `
|
|
6634
6793
|
calendarId
|
6635
6794
|
beforeDate
|
6636
6795
|
afterDate
|
6796
|
+
authenticationType
|
6637
6797
|
refreshToken
|
6638
6798
|
clientId
|
6639
6799
|
clientSecret
|
6800
|
+
connectorId
|
6640
6801
|
}
|
6641
6802
|
microsoft {
|
6642
6803
|
calendarId
|
6643
6804
|
beforeDate
|
6644
6805
|
afterDate
|
6806
|
+
authenticationType
|
6645
6807
|
refreshToken
|
6646
6808
|
clientId
|
6647
6809
|
clientSecret
|
6810
|
+
connectorId
|
6648
6811
|
}
|
6649
6812
|
readLimit
|
6650
6813
|
}
|
@@ -9442,6 +9605,9 @@ export const GetUser = gql `
|
|
9442
9605
|
clientId
|
9443
9606
|
clientSecret
|
9444
9607
|
}
|
9608
|
+
arcade {
|
9609
|
+
authorizationId
|
9610
|
+
}
|
9445
9611
|
}
|
9446
9612
|
integration {
|
9447
9613
|
type
|
@@ -9496,6 +9662,9 @@ export const GetUserByIdentifier = gql `
|
|
9496
9662
|
clientId
|
9497
9663
|
clientSecret
|
9498
9664
|
}
|
9665
|
+
arcade {
|
9666
|
+
authorizationId
|
9667
|
+
}
|
9499
9668
|
}
|
9500
9669
|
integration {
|
9501
9670
|
type
|
@@ -9551,6 +9720,9 @@ export const QueryUsers = gql `
|
|
9551
9720
|
clientId
|
9552
9721
|
clientSecret
|
9553
9722
|
}
|
9723
|
+
arcade {
|
9724
|
+
authorizationId
|
9725
|
+
}
|
9554
9726
|
}
|
9555
9727
|
integration {
|
9556
9728
|
type
|
@@ -9588,6 +9760,940 @@ export const UpdateUser = gql `
|
|
9588
9760
|
}
|
9589
9761
|
}
|
9590
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
|
+
`;
|
9591
10697
|
export const CountWorkflows = gql `
|
9592
10698
|
query CountWorkflows($filter: WorkflowFilter, $correlationId: String) {
|
9593
10699
|
countWorkflows(filter: $filter, correlationId: $correlationId) {
|
@@ -9762,6 +10868,8 @@ export const CreateWorkflow = gql `
|
|
9762
10868
|
excludedLinks
|
9763
10869
|
allowedFiles
|
9764
10870
|
excludedFiles
|
10871
|
+
allowedContentTypes
|
10872
|
+
excludedContentTypes
|
9765
10873
|
allowContentDomain
|
9766
10874
|
maximumLinks
|
9767
10875
|
}
|
@@ -10008,6 +11116,8 @@ export const GetWorkflow = gql `
|
|
10008
11116
|
excludedLinks
|
10009
11117
|
allowedFiles
|
10010
11118
|
excludedFiles
|
11119
|
+
allowedContentTypes
|
11120
|
+
excludedContentTypes
|
10011
11121
|
allowContentDomain
|
10012
11122
|
maximumLinks
|
10013
11123
|
}
|
@@ -10227,6 +11337,8 @@ export const QueryWorkflows = gql `
|
|
10227
11337
|
excludedLinks
|
10228
11338
|
allowedFiles
|
10229
11339
|
excludedFiles
|
11340
|
+
allowedContentTypes
|
11341
|
+
excludedContentTypes
|
10230
11342
|
allowContentDomain
|
10231
11343
|
maximumLinks
|
10232
11344
|
}
|
@@ -10441,6 +11553,8 @@ export const UpdateWorkflow = gql `
|
|
10441
11553
|
excludedLinks
|
10442
11554
|
allowedFiles
|
10443
11555
|
excludedFiles
|
11556
|
+
allowedContentTypes
|
11557
|
+
excludedContentTypes
|
10444
11558
|
allowContentDomain
|
10445
11559
|
maximumLinks
|
10446
11560
|
}
|
@@ -10654,6 +11768,8 @@ export const UpsertWorkflow = gql `
|
|
10654
11768
|
excludedLinks
|
10655
11769
|
allowedFiles
|
10656
11770
|
excludedFiles
|
11771
|
+
allowedContentTypes
|
11772
|
+
excludedContentTypes
|
10657
11773
|
allowContentDomain
|
10658
11774
|
maximumLinks
|
10659
11775
|
}
|