graphlit-client 1.0.20250622004__py3-none-any.whl → 1.0.20250627001__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.
- graphlit_api/__init__.py +700 -0
- graphlit_api/client.py +297 -0
- graphlit_api/count_connectors.py +21 -0
- graphlit_api/count_views.py +19 -0
- graphlit_api/create_connector.py +25 -0
- graphlit_api/create_view.py +316 -0
- graphlit_api/create_workflow.py +6 -0
- graphlit_api/delete_connector.py +23 -0
- graphlit_api/delete_view.py +21 -0
- graphlit_api/enums.py +903 -818
- graphlit_api/get_connector.py +88 -0
- graphlit_api/get_content.py +62 -0
- graphlit_api/get_feed.py +60 -1
- graphlit_api/get_user.py +5 -0
- graphlit_api/get_user_by_identifier.py +7 -0
- graphlit_api/get_view.py +321 -0
- graphlit_api/get_workflow.py +6 -0
- graphlit_api/input_types.py +2902 -2632
- graphlit_api/lookup_contents.py +66 -0
- graphlit_api/operations.py +1209 -0
- graphlit_api/query_box_folders.py +25 -0
- graphlit_api/query_connectors.py +93 -0
- graphlit_api/query_contents.py +63 -0
- graphlit_api/query_contents_observations.py +67 -0
- graphlit_api/query_dropbox_folders.py +27 -0
- graphlit_api/query_feeds.py +60 -1
- graphlit_api/query_google_calendars.py +27 -0
- graphlit_api/query_google_drive_folders.py +29 -0
- graphlit_api/query_microsoft_calendars.py +29 -0
- graphlit_api/query_users.py +5 -0
- graphlit_api/query_views.py +330 -0
- graphlit_api/query_workflows.py +6 -0
- graphlit_api/update_connector.py +25 -0
- graphlit_api/update_view.py +316 -0
- graphlit_api/update_workflow.py +6 -0
- graphlit_api/upsert_workflow.py +6 -0
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250627001.dist-info}/METADATA +1 -1
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250627001.dist-info}/RECORD +41 -24
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250627001.dist-info}/WHEEL +0 -0
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250627001.dist-info}/licenses/LICENSE +0 -0
- {graphlit_client-1.0.20250622004.dist-info → graphlit_client-1.0.20250627001.dist-info}/top_level.txt +0 -0
graphlit_api/operations.py
CHANGED
@@ -12,6 +12,7 @@ __all__ = [
|
|
12
12
|
"COUNT_ALERTS_GQL",
|
13
13
|
"COUNT_CATEGORIES_GQL",
|
14
14
|
"COUNT_COLLECTIONS_GQL",
|
15
|
+
"COUNT_CONNECTORS_GQL",
|
15
16
|
"COUNT_CONTENTS_GQL",
|
16
17
|
"COUNT_CONVERSATIONS_GQL",
|
17
18
|
"COUNT_EVENTS_GQL",
|
@@ -36,10 +37,12 @@ __all__ = [
|
|
36
37
|
"COUNT_SOFTWARES_GQL",
|
37
38
|
"COUNT_SPECIFICATIONS_GQL",
|
38
39
|
"COUNT_USERS_GQL",
|
40
|
+
"COUNT_VIEWS_GQL",
|
39
41
|
"COUNT_WORKFLOWS_GQL",
|
40
42
|
"CREATE_ALERT_GQL",
|
41
43
|
"CREATE_CATEGORY_GQL",
|
42
44
|
"CREATE_COLLECTION_GQL",
|
45
|
+
"CREATE_CONNECTOR_GQL",
|
43
46
|
"CREATE_CONVERSATION_GQL",
|
44
47
|
"CREATE_EVENT_GQL",
|
45
48
|
"CREATE_FEED_GQL",
|
@@ -64,6 +67,7 @@ __all__ = [
|
|
64
67
|
"CREATE_SOFTWARE_GQL",
|
65
68
|
"CREATE_SPECIFICATION_GQL",
|
66
69
|
"CREATE_USER_GQL",
|
70
|
+
"CREATE_VIEW_GQL",
|
67
71
|
"CREATE_WORKFLOW_GQL",
|
68
72
|
"DELETE_ALERTS_GQL",
|
69
73
|
"DELETE_ALERT_GQL",
|
@@ -98,6 +102,7 @@ __all__ = [
|
|
98
102
|
"DELETE_CATEGORY_GQL",
|
99
103
|
"DELETE_COLLECTIONS_GQL",
|
100
104
|
"DELETE_COLLECTION_GQL",
|
105
|
+
"DELETE_CONNECTOR_GQL",
|
101
106
|
"DELETE_CONTENTS_GQL",
|
102
107
|
"DELETE_CONTENT_GQL",
|
103
108
|
"DELETE_CONVERSATIONS_GQL",
|
@@ -146,6 +151,7 @@ __all__ = [
|
|
146
151
|
"DELETE_SPECIFICATIONS_GQL",
|
147
152
|
"DELETE_SPECIFICATION_GQL",
|
148
153
|
"DELETE_USER_GQL",
|
154
|
+
"DELETE_VIEW_GQL",
|
149
155
|
"DELETE_WORKFLOWS_GQL",
|
150
156
|
"DELETE_WORKFLOW_GQL",
|
151
157
|
"DESCRIBE_ENCODED_IMAGE_GQL",
|
@@ -163,6 +169,7 @@ __all__ = [
|
|
163
169
|
"GET_ALERT_GQL",
|
164
170
|
"GET_CATEGORY_GQL",
|
165
171
|
"GET_COLLECTION_GQL",
|
172
|
+
"GET_CONNECTOR_GQL",
|
166
173
|
"GET_CONTENT_GQL",
|
167
174
|
"GET_CONVERSATION_GQL",
|
168
175
|
"GET_EVENT_GQL",
|
@@ -190,6 +197,7 @@ __all__ = [
|
|
190
197
|
"GET_SPECIFICATION_GQL",
|
191
198
|
"GET_USER_BY_IDENTIFIER_GQL",
|
192
199
|
"GET_USER_GQL",
|
200
|
+
"GET_VIEW_GQL",
|
193
201
|
"GET_WORKFLOW_GQL",
|
194
202
|
"INGEST_BATCH_GQL",
|
195
203
|
"INGEST_ENCODED_FILE_GQL",
|
@@ -211,16 +219,21 @@ __all__ = [
|
|
211
219
|
"PUBLISH_CONVERSATION_GQL",
|
212
220
|
"PUBLISH_TEXT_GQL",
|
213
221
|
"QUERY_ALERTS_GQL",
|
222
|
+
"QUERY_BOX_FOLDERS_GQL",
|
214
223
|
"QUERY_CATEGORIES_GQL",
|
215
224
|
"QUERY_COLLECTIONS_GQL",
|
225
|
+
"QUERY_CONNECTORS_GQL",
|
216
226
|
"QUERY_CONTENTS_FACETS_GQL",
|
217
227
|
"QUERY_CONTENTS_GQL",
|
218
228
|
"QUERY_CONTENTS_GRAPH_GQL",
|
219
229
|
"QUERY_CONTENTS_OBSERVATIONS_GQL",
|
220
230
|
"QUERY_CONVERSATIONS_GQL",
|
221
231
|
"QUERY_CREDITS_GQL",
|
232
|
+
"QUERY_DROPBOX_FOLDERS_GQL",
|
222
233
|
"QUERY_EVENTS_GQL",
|
223
234
|
"QUERY_FEEDS_GQL",
|
235
|
+
"QUERY_GOOGLE_CALENDARS_GQL",
|
236
|
+
"QUERY_GOOGLE_DRIVE_FOLDERS_GQL",
|
224
237
|
"QUERY_LABELS_GQL",
|
225
238
|
"QUERY_LINEAR_PROJECTS_GQL",
|
226
239
|
"QUERY_MEDICAL_CONDITIONS_GQL",
|
@@ -234,6 +247,7 @@ __all__ = [
|
|
234
247
|
"QUERY_MEDICAL_STUDIES_GQL",
|
235
248
|
"QUERY_MEDICAL_TESTS_GQL",
|
236
249
|
"QUERY_MEDICAL_THERAPIES_GQL",
|
250
|
+
"QUERY_MICROSOFT_CALENDARS_GQL",
|
237
251
|
"QUERY_MICROSOFT_TEAMS_CHANNELS_GQL",
|
238
252
|
"QUERY_MICROSOFT_TEAMS_TEAMS_GQL",
|
239
253
|
"QUERY_MODELS_GQL",
|
@@ -253,6 +267,7 @@ __all__ = [
|
|
253
267
|
"QUERY_TOKENS_GQL",
|
254
268
|
"QUERY_USAGE_GQL",
|
255
269
|
"QUERY_USERS_GQL",
|
270
|
+
"QUERY_VIEWS_GQL",
|
256
271
|
"QUERY_WORKFLOWS_GQL",
|
257
272
|
"REMOVE_CONTENTS_FROM_COLLECTION_GQL",
|
258
273
|
"RETRIEVE_SOURCES_GQL",
|
@@ -270,6 +285,7 @@ __all__ = [
|
|
270
285
|
"UPDATE_ALERT_GQL",
|
271
286
|
"UPDATE_CATEGORY_GQL",
|
272
287
|
"UPDATE_COLLECTION_GQL",
|
288
|
+
"UPDATE_CONNECTOR_GQL",
|
273
289
|
"UPDATE_CONTENT_GQL",
|
274
290
|
"UPDATE_CONVERSATION_GQL",
|
275
291
|
"UPDATE_EVENT_GQL",
|
@@ -296,6 +312,7 @@ __all__ = [
|
|
296
312
|
"UPDATE_SOFTWARE_GQL",
|
297
313
|
"UPDATE_SPECIFICATION_GQL",
|
298
314
|
"UPDATE_USER_GQL",
|
315
|
+
"UPDATE_VIEW_GQL",
|
299
316
|
"UPDATE_WORKFLOW_GQL",
|
300
317
|
"UPSERT_CATEGORY_GQL",
|
301
318
|
"UPSERT_LABEL_GQL",
|
@@ -889,6 +906,147 @@ mutation UpdateCollection($collection: CollectionUpdateInput!) {
|
|
889
906
|
}
|
890
907
|
"""
|
891
908
|
|
909
|
+
COUNT_CONNECTORS_GQL = """
|
910
|
+
query CountConnectors($filter: ConnectorFilter, $correlationId: String) {
|
911
|
+
countConnectors(filter: $filter, correlationId: $correlationId) {
|
912
|
+
count
|
913
|
+
}
|
914
|
+
}
|
915
|
+
"""
|
916
|
+
|
917
|
+
CREATE_CONNECTOR_GQL = """
|
918
|
+
mutation CreateConnector($connector: ConnectorInput!) {
|
919
|
+
createConnector(connector: $connector) {
|
920
|
+
id
|
921
|
+
name
|
922
|
+
state
|
923
|
+
type
|
924
|
+
}
|
925
|
+
}
|
926
|
+
"""
|
927
|
+
|
928
|
+
DELETE_CONNECTOR_GQL = """
|
929
|
+
mutation DeleteConnector($id: ID!) {
|
930
|
+
deleteConnector(id: $id) {
|
931
|
+
id
|
932
|
+
state
|
933
|
+
}
|
934
|
+
}
|
935
|
+
"""
|
936
|
+
|
937
|
+
GET_CONNECTOR_GQL = """
|
938
|
+
query GetConnector($id: ID!, $correlationId: String) {
|
939
|
+
connector(id: $id, correlationId: $correlationId) {
|
940
|
+
id
|
941
|
+
name
|
942
|
+
creationDate
|
943
|
+
relevance
|
944
|
+
owner {
|
945
|
+
id
|
946
|
+
}
|
947
|
+
state
|
948
|
+
type
|
949
|
+
authentication {
|
950
|
+
type
|
951
|
+
microsoft {
|
952
|
+
tenantId
|
953
|
+
clientId
|
954
|
+
clientSecret
|
955
|
+
}
|
956
|
+
google {
|
957
|
+
clientId
|
958
|
+
clientSecret
|
959
|
+
}
|
960
|
+
arcade {
|
961
|
+
authorizationId
|
962
|
+
}
|
963
|
+
}
|
964
|
+
integration {
|
965
|
+
type
|
966
|
+
uri
|
967
|
+
slack {
|
968
|
+
token
|
969
|
+
channel
|
970
|
+
}
|
971
|
+
email {
|
972
|
+
from
|
973
|
+
subject
|
974
|
+
to
|
975
|
+
}
|
976
|
+
twitter {
|
977
|
+
consumerKey
|
978
|
+
consumerSecret
|
979
|
+
accessTokenKey
|
980
|
+
accessTokenSecret
|
981
|
+
}
|
982
|
+
}
|
983
|
+
}
|
984
|
+
}
|
985
|
+
"""
|
986
|
+
|
987
|
+
QUERY_CONNECTORS_GQL = """
|
988
|
+
query QueryConnectors($filter: ConnectorFilter, $correlationId: String) {
|
989
|
+
connectors(filter: $filter, correlationId: $correlationId) {
|
990
|
+
results {
|
991
|
+
id
|
992
|
+
name
|
993
|
+
creationDate
|
994
|
+
relevance
|
995
|
+
owner {
|
996
|
+
id
|
997
|
+
}
|
998
|
+
state
|
999
|
+
type
|
1000
|
+
authentication {
|
1001
|
+
type
|
1002
|
+
microsoft {
|
1003
|
+
tenantId
|
1004
|
+
clientId
|
1005
|
+
clientSecret
|
1006
|
+
}
|
1007
|
+
google {
|
1008
|
+
clientId
|
1009
|
+
clientSecret
|
1010
|
+
}
|
1011
|
+
arcade {
|
1012
|
+
authorizationId
|
1013
|
+
}
|
1014
|
+
}
|
1015
|
+
integration {
|
1016
|
+
type
|
1017
|
+
uri
|
1018
|
+
slack {
|
1019
|
+
token
|
1020
|
+
channel
|
1021
|
+
}
|
1022
|
+
email {
|
1023
|
+
from
|
1024
|
+
subject
|
1025
|
+
to
|
1026
|
+
}
|
1027
|
+
twitter {
|
1028
|
+
consumerKey
|
1029
|
+
consumerSecret
|
1030
|
+
accessTokenKey
|
1031
|
+
accessTokenSecret
|
1032
|
+
}
|
1033
|
+
}
|
1034
|
+
}
|
1035
|
+
}
|
1036
|
+
}
|
1037
|
+
"""
|
1038
|
+
|
1039
|
+
UPDATE_CONNECTOR_GQL = """
|
1040
|
+
mutation UpdateConnector($connector: ConnectorUpdateInput!) {
|
1041
|
+
updateConnector(connector: $connector) {
|
1042
|
+
id
|
1043
|
+
name
|
1044
|
+
state
|
1045
|
+
type
|
1046
|
+
}
|
1047
|
+
}
|
1048
|
+
"""
|
1049
|
+
|
892
1050
|
COUNT_CONTENTS_GQL = """
|
893
1051
|
query CountContents($filter: ContentFilter, $correlationId: String) {
|
894
1052
|
countContents(filter: $filter, correlationId: $correlationId) {
|
@@ -1430,6 +1588,48 @@ query GetContent($id: ID!, $correlationId: String) {
|
|
1430
1588
|
familyName
|
1431
1589
|
}
|
1432
1590
|
}
|
1591
|
+
event {
|
1592
|
+
eventIdentifier
|
1593
|
+
calendarIdentifier
|
1594
|
+
subject
|
1595
|
+
startDateTime
|
1596
|
+
endDateTime
|
1597
|
+
isAllDay
|
1598
|
+
timezone
|
1599
|
+
status
|
1600
|
+
visibility
|
1601
|
+
meetingLink
|
1602
|
+
organizer {
|
1603
|
+
name
|
1604
|
+
email
|
1605
|
+
isOptional
|
1606
|
+
isOrganizer
|
1607
|
+
responseStatus
|
1608
|
+
}
|
1609
|
+
attendees {
|
1610
|
+
name
|
1611
|
+
email
|
1612
|
+
isOptional
|
1613
|
+
isOrganizer
|
1614
|
+
responseStatus
|
1615
|
+
}
|
1616
|
+
categories
|
1617
|
+
reminders {
|
1618
|
+
minutesBefore
|
1619
|
+
method
|
1620
|
+
}
|
1621
|
+
recurrence {
|
1622
|
+
pattern
|
1623
|
+
interval
|
1624
|
+
count
|
1625
|
+
until
|
1626
|
+
daysOfWeek
|
1627
|
+
dayOfMonth
|
1628
|
+
monthOfYear
|
1629
|
+
}
|
1630
|
+
recurringEventIdentifier
|
1631
|
+
isRecurring
|
1632
|
+
}
|
1433
1633
|
issue {
|
1434
1634
|
identifier
|
1435
1635
|
title
|
@@ -2110,6 +2310,48 @@ query LookupContents($ids: [ID!]!, $correlationId: String) {
|
|
2110
2310
|
familyName
|
2111
2311
|
}
|
2112
2312
|
}
|
2313
|
+
event {
|
2314
|
+
eventIdentifier
|
2315
|
+
calendarIdentifier
|
2316
|
+
subject
|
2317
|
+
startDateTime
|
2318
|
+
endDateTime
|
2319
|
+
isAllDay
|
2320
|
+
timezone
|
2321
|
+
status
|
2322
|
+
visibility
|
2323
|
+
meetingLink
|
2324
|
+
organizer {
|
2325
|
+
name
|
2326
|
+
email
|
2327
|
+
isOptional
|
2328
|
+
isOrganizer
|
2329
|
+
responseStatus
|
2330
|
+
}
|
2331
|
+
attendees {
|
2332
|
+
name
|
2333
|
+
email
|
2334
|
+
isOptional
|
2335
|
+
isOrganizer
|
2336
|
+
responseStatus
|
2337
|
+
}
|
2338
|
+
categories
|
2339
|
+
reminders {
|
2340
|
+
minutesBefore
|
2341
|
+
method
|
2342
|
+
}
|
2343
|
+
recurrence {
|
2344
|
+
pattern
|
2345
|
+
interval
|
2346
|
+
count
|
2347
|
+
until
|
2348
|
+
daysOfWeek
|
2349
|
+
dayOfMonth
|
2350
|
+
monthOfYear
|
2351
|
+
}
|
2352
|
+
recurringEventIdentifier
|
2353
|
+
isRecurring
|
2354
|
+
}
|
2113
2355
|
issue {
|
2114
2356
|
identifier
|
2115
2357
|
title
|
@@ -2508,6 +2750,7 @@ query QueryContents($filter: ContentFilter, $correlationId: String) {
|
|
2508
2750
|
latitude
|
2509
2751
|
longitude
|
2510
2752
|
}
|
2753
|
+
features
|
2511
2754
|
type
|
2512
2755
|
fileType
|
2513
2756
|
mimeType
|
@@ -2631,6 +2874,48 @@ query QueryContents($filter: ContentFilter, $correlationId: String) {
|
|
2631
2874
|
familyName
|
2632
2875
|
}
|
2633
2876
|
}
|
2877
|
+
event {
|
2878
|
+
eventIdentifier
|
2879
|
+
calendarIdentifier
|
2880
|
+
subject
|
2881
|
+
startDateTime
|
2882
|
+
endDateTime
|
2883
|
+
isAllDay
|
2884
|
+
timezone
|
2885
|
+
status
|
2886
|
+
visibility
|
2887
|
+
meetingLink
|
2888
|
+
organizer {
|
2889
|
+
name
|
2890
|
+
email
|
2891
|
+
isOptional
|
2892
|
+
isOrganizer
|
2893
|
+
responseStatus
|
2894
|
+
}
|
2895
|
+
attendees {
|
2896
|
+
name
|
2897
|
+
email
|
2898
|
+
isOptional
|
2899
|
+
isOrganizer
|
2900
|
+
responseStatus
|
2901
|
+
}
|
2902
|
+
categories
|
2903
|
+
reminders {
|
2904
|
+
minutesBefore
|
2905
|
+
method
|
2906
|
+
}
|
2907
|
+
recurrence {
|
2908
|
+
pattern
|
2909
|
+
interval
|
2910
|
+
count
|
2911
|
+
until
|
2912
|
+
daysOfWeek
|
2913
|
+
dayOfMonth
|
2914
|
+
monthOfYear
|
2915
|
+
}
|
2916
|
+
recurringEventIdentifier
|
2917
|
+
isRecurring
|
2918
|
+
}
|
2634
2919
|
issue {
|
2635
2920
|
identifier
|
2636
2921
|
title
|
@@ -2777,6 +3062,7 @@ query QueryContentsObservations($filter: ContentFilter, $correlationId: String)
|
|
2777
3062
|
latitude
|
2778
3063
|
longitude
|
2779
3064
|
}
|
3065
|
+
features
|
2780
3066
|
type
|
2781
3067
|
fileType
|
2782
3068
|
mimeType
|
@@ -2900,6 +3186,48 @@ query QueryContentsObservations($filter: ContentFilter, $correlationId: String)
|
|
2900
3186
|
familyName
|
2901
3187
|
}
|
2902
3188
|
}
|
3189
|
+
event {
|
3190
|
+
eventIdentifier
|
3191
|
+
calendarIdentifier
|
3192
|
+
subject
|
3193
|
+
startDateTime
|
3194
|
+
endDateTime
|
3195
|
+
isAllDay
|
3196
|
+
timezone
|
3197
|
+
status
|
3198
|
+
visibility
|
3199
|
+
meetingLink
|
3200
|
+
organizer {
|
3201
|
+
name
|
3202
|
+
email
|
3203
|
+
isOptional
|
3204
|
+
isOrganizer
|
3205
|
+
responseStatus
|
3206
|
+
}
|
3207
|
+
attendees {
|
3208
|
+
name
|
3209
|
+
email
|
3210
|
+
isOptional
|
3211
|
+
isOrganizer
|
3212
|
+
responseStatus
|
3213
|
+
}
|
3214
|
+
categories
|
3215
|
+
reminders {
|
3216
|
+
minutesBefore
|
3217
|
+
method
|
3218
|
+
}
|
3219
|
+
recurrence {
|
3220
|
+
pattern
|
3221
|
+
interval
|
3222
|
+
count
|
3223
|
+
until
|
3224
|
+
daysOfWeek
|
3225
|
+
dayOfMonth
|
3226
|
+
monthOfYear
|
3227
|
+
}
|
3228
|
+
recurringEventIdentifier
|
3229
|
+
isRecurring
|
3230
|
+
}
|
2903
3231
|
issue {
|
2904
3232
|
identifier
|
2905
3233
|
title
|
@@ -6462,13 +6790,16 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
6462
6790
|
clientId
|
6463
6791
|
clientSecret
|
6464
6792
|
refreshToken
|
6793
|
+
connectorId
|
6465
6794
|
}
|
6466
6795
|
oneDrive {
|
6796
|
+
authenticationType
|
6467
6797
|
folderId
|
6468
6798
|
files
|
6469
6799
|
clientId
|
6470
6800
|
clientSecret
|
6471
6801
|
refreshToken
|
6802
|
+
connectorId
|
6472
6803
|
}
|
6473
6804
|
googleDrive {
|
6474
6805
|
authenticationType
|
@@ -6478,6 +6809,7 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
6478
6809
|
clientId
|
6479
6810
|
clientSecret
|
6480
6811
|
serviceAccountJson
|
6812
|
+
connectorId
|
6481
6813
|
}
|
6482
6814
|
dropbox {
|
6483
6815
|
path
|
@@ -6494,11 +6826,13 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
6494
6826
|
redirectUri
|
6495
6827
|
}
|
6496
6828
|
github {
|
6829
|
+
authenticationType
|
6497
6830
|
uri
|
6498
6831
|
repositoryOwner
|
6499
6832
|
repositoryName
|
6500
6833
|
refreshToken
|
6501
6834
|
personalAccessToken
|
6835
|
+
connectorId
|
6502
6836
|
}
|
6503
6837
|
readLimit
|
6504
6838
|
}
|
@@ -6511,9 +6845,11 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
6511
6845
|
excludeSentItems
|
6512
6846
|
includeDeletedItems
|
6513
6847
|
inboxOnly
|
6848
|
+
authenticationType
|
6514
6849
|
refreshToken
|
6515
6850
|
clientId
|
6516
6851
|
clientSecret
|
6852
|
+
connectorId
|
6517
6853
|
}
|
6518
6854
|
microsoft {
|
6519
6855
|
type
|
@@ -6521,9 +6857,11 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
6521
6857
|
excludeSentItems
|
6522
6858
|
includeDeletedItems
|
6523
6859
|
inboxOnly
|
6860
|
+
authenticationType
|
6524
6861
|
refreshToken
|
6525
6862
|
clientId
|
6526
6863
|
clientSecret
|
6864
|
+
connectorId
|
6527
6865
|
}
|
6528
6866
|
readLimit
|
6529
6867
|
}
|
@@ -6563,6 +6901,31 @@ query GetFeed($id: ID!, $correlationId: String) {
|
|
6563
6901
|
}
|
6564
6902
|
readLimit
|
6565
6903
|
}
|
6904
|
+
calendar {
|
6905
|
+
type
|
6906
|
+
includeAttachments
|
6907
|
+
google {
|
6908
|
+
calendarId
|
6909
|
+
beforeDate
|
6910
|
+
afterDate
|
6911
|
+
authenticationType
|
6912
|
+
refreshToken
|
6913
|
+
clientId
|
6914
|
+
clientSecret
|
6915
|
+
connectorId
|
6916
|
+
}
|
6917
|
+
microsoft {
|
6918
|
+
calendarId
|
6919
|
+
beforeDate
|
6920
|
+
afterDate
|
6921
|
+
authenticationType
|
6922
|
+
refreshToken
|
6923
|
+
clientId
|
6924
|
+
clientSecret
|
6925
|
+
connectorId
|
6926
|
+
}
|
6927
|
+
readLimit
|
6928
|
+
}
|
6566
6929
|
rss {
|
6567
6930
|
readLimit
|
6568
6931
|
uri
|
@@ -6669,6 +7032,28 @@ query IsFeedDone($id: ID!) {
|
|
6669
7032
|
}
|
6670
7033
|
"""
|
6671
7034
|
|
7035
|
+
QUERY_BOX_FOLDERS_GQL = """
|
7036
|
+
query QueryBoxFolders($properties: BoxFoldersInput!, $folderId: ID) {
|
7037
|
+
boxFolders(properties: $properties, folderId: $folderId) {
|
7038
|
+
results {
|
7039
|
+
folderName
|
7040
|
+
folderId
|
7041
|
+
}
|
7042
|
+
}
|
7043
|
+
}
|
7044
|
+
"""
|
7045
|
+
|
7046
|
+
QUERY_DROPBOX_FOLDERS_GQL = """
|
7047
|
+
query QueryDropboxFolders($properties: DropboxFoldersInput!, $folderPath: String) {
|
7048
|
+
dropboxFolders(properties: $properties, folderPath: $folderPath) {
|
7049
|
+
results {
|
7050
|
+
folderName
|
7051
|
+
folderId
|
7052
|
+
}
|
7053
|
+
}
|
7054
|
+
}
|
7055
|
+
"""
|
7056
|
+
|
6672
7057
|
QUERY_FEEDS_GQL = """
|
6673
7058
|
query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
6674
7059
|
feeds(filter: $filter, correlationId: $correlationId) {
|
@@ -6720,13 +7105,16 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
6720
7105
|
clientId
|
6721
7106
|
clientSecret
|
6722
7107
|
refreshToken
|
7108
|
+
connectorId
|
6723
7109
|
}
|
6724
7110
|
oneDrive {
|
7111
|
+
authenticationType
|
6725
7112
|
folderId
|
6726
7113
|
files
|
6727
7114
|
clientId
|
6728
7115
|
clientSecret
|
6729
7116
|
refreshToken
|
7117
|
+
connectorId
|
6730
7118
|
}
|
6731
7119
|
googleDrive {
|
6732
7120
|
authenticationType
|
@@ -6736,6 +7124,7 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
6736
7124
|
clientId
|
6737
7125
|
clientSecret
|
6738
7126
|
serviceAccountJson
|
7127
|
+
connectorId
|
6739
7128
|
}
|
6740
7129
|
dropbox {
|
6741
7130
|
path
|
@@ -6752,11 +7141,13 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
6752
7141
|
redirectUri
|
6753
7142
|
}
|
6754
7143
|
github {
|
7144
|
+
authenticationType
|
6755
7145
|
uri
|
6756
7146
|
repositoryOwner
|
6757
7147
|
repositoryName
|
6758
7148
|
refreshToken
|
6759
7149
|
personalAccessToken
|
7150
|
+
connectorId
|
6760
7151
|
}
|
6761
7152
|
readLimit
|
6762
7153
|
}
|
@@ -6769,9 +7160,11 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
6769
7160
|
excludeSentItems
|
6770
7161
|
includeDeletedItems
|
6771
7162
|
inboxOnly
|
7163
|
+
authenticationType
|
6772
7164
|
refreshToken
|
6773
7165
|
clientId
|
6774
7166
|
clientSecret
|
7167
|
+
connectorId
|
6775
7168
|
}
|
6776
7169
|
microsoft {
|
6777
7170
|
type
|
@@ -6779,9 +7172,11 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
6779
7172
|
excludeSentItems
|
6780
7173
|
includeDeletedItems
|
6781
7174
|
inboxOnly
|
7175
|
+
authenticationType
|
6782
7176
|
refreshToken
|
6783
7177
|
clientId
|
6784
7178
|
clientSecret
|
7179
|
+
connectorId
|
6785
7180
|
}
|
6786
7181
|
readLimit
|
6787
7182
|
}
|
@@ -6821,6 +7216,31 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
6821
7216
|
}
|
6822
7217
|
readLimit
|
6823
7218
|
}
|
7219
|
+
calendar {
|
7220
|
+
type
|
7221
|
+
includeAttachments
|
7222
|
+
google {
|
7223
|
+
calendarId
|
7224
|
+
beforeDate
|
7225
|
+
afterDate
|
7226
|
+
authenticationType
|
7227
|
+
refreshToken
|
7228
|
+
clientId
|
7229
|
+
clientSecret
|
7230
|
+
connectorId
|
7231
|
+
}
|
7232
|
+
microsoft {
|
7233
|
+
calendarId
|
7234
|
+
beforeDate
|
7235
|
+
afterDate
|
7236
|
+
authenticationType
|
7237
|
+
refreshToken
|
7238
|
+
clientId
|
7239
|
+
clientSecret
|
7240
|
+
connectorId
|
7241
|
+
}
|
7242
|
+
readLimit
|
7243
|
+
}
|
6824
7244
|
rss {
|
6825
7245
|
readLimit
|
6826
7246
|
uri
|
@@ -6912,6 +7332,28 @@ query QueryFeeds($filter: FeedFilter, $correlationId: String) {
|
|
6912
7332
|
}
|
6913
7333
|
"""
|
6914
7334
|
|
7335
|
+
QUERY_GOOGLE_CALENDARS_GQL = """
|
7336
|
+
query QueryGoogleCalendars($properties: GoogleCalendarsInput!) {
|
7337
|
+
googleCalendars(properties: $properties) {
|
7338
|
+
results {
|
7339
|
+
calendarName
|
7340
|
+
calendarId
|
7341
|
+
}
|
7342
|
+
}
|
7343
|
+
}
|
7344
|
+
"""
|
7345
|
+
|
7346
|
+
QUERY_GOOGLE_DRIVE_FOLDERS_GQL = """
|
7347
|
+
query QueryGoogleDriveFolders($properties: GoogleDriveFoldersInput!, $folderId: ID) {
|
7348
|
+
googleDriveFolders(properties: $properties, folderId: $folderId) {
|
7349
|
+
results {
|
7350
|
+
folderName
|
7351
|
+
folderId
|
7352
|
+
}
|
7353
|
+
}
|
7354
|
+
}
|
7355
|
+
"""
|
7356
|
+
|
6915
7357
|
QUERY_LINEAR_PROJECTS_GQL = """
|
6916
7358
|
query QueryLinearProjects($properties: LinearProjectsInput!) {
|
6917
7359
|
linearProjects(properties: $properties) {
|
@@ -6920,6 +7362,17 @@ query QueryLinearProjects($properties: LinearProjectsInput!) {
|
|
6920
7362
|
}
|
6921
7363
|
"""
|
6922
7364
|
|
7365
|
+
QUERY_MICROSOFT_CALENDARS_GQL = """
|
7366
|
+
query QueryMicrosoftCalendars($properties: MicrosoftCalendarsInput!) {
|
7367
|
+
microsoftCalendars(properties: $properties) {
|
7368
|
+
results {
|
7369
|
+
calendarName
|
7370
|
+
calendarId
|
7371
|
+
}
|
7372
|
+
}
|
7373
|
+
}
|
7374
|
+
"""
|
7375
|
+
|
6923
7376
|
QUERY_MICROSOFT_TEAMS_CHANNELS_GQL = """
|
6924
7377
|
query QueryMicrosoftTeamsChannels($properties: MicrosoftTeamsChannelsInput!, $teamId: ID!) {
|
6925
7378
|
microsoftTeamsChannels(properties: $properties, teamId: $teamId) {
|
@@ -9771,6 +10224,9 @@ query GetUser {
|
|
9771
10224
|
clientId
|
9772
10225
|
clientSecret
|
9773
10226
|
}
|
10227
|
+
arcade {
|
10228
|
+
authorizationId
|
10229
|
+
}
|
9774
10230
|
}
|
9775
10231
|
integration {
|
9776
10232
|
type
|
@@ -9826,6 +10282,9 @@ query GetUserByIdentifier($identifier: String!) {
|
|
9826
10282
|
clientId
|
9827
10283
|
clientSecret
|
9828
10284
|
}
|
10285
|
+
arcade {
|
10286
|
+
authorizationId
|
10287
|
+
}
|
9829
10288
|
}
|
9830
10289
|
integration {
|
9831
10290
|
type
|
@@ -9882,6 +10341,9 @@ query QueryUsers($filter: UserFilter, $correlationId: String) {
|
|
9882
10341
|
clientId
|
9883
10342
|
clientSecret
|
9884
10343
|
}
|
10344
|
+
arcade {
|
10345
|
+
authorizationId
|
10346
|
+
}
|
9885
10347
|
}
|
9886
10348
|
integration {
|
9887
10349
|
type
|
@@ -9921,6 +10383,743 @@ mutation UpdateUser($user: UserUpdateInput!) {
|
|
9921
10383
|
}
|
9922
10384
|
"""
|
9923
10385
|
|
10386
|
+
COUNT_VIEWS_GQL = """
|
10387
|
+
query CountViews($filter: ViewFilter, $correlationId: String) {
|
10388
|
+
countViews(filter: $filter, correlationId: $correlationId) {
|
10389
|
+
count
|
10390
|
+
}
|
10391
|
+
}
|
10392
|
+
"""
|
10393
|
+
|
10394
|
+
CREATE_VIEW_GQL = """
|
10395
|
+
mutation CreateView($view: ViewInput!) {
|
10396
|
+
createView(view: $view) {
|
10397
|
+
id
|
10398
|
+
name
|
10399
|
+
state
|
10400
|
+
type
|
10401
|
+
filter {
|
10402
|
+
dateRange {
|
10403
|
+
from
|
10404
|
+
to
|
10405
|
+
}
|
10406
|
+
inLast
|
10407
|
+
creationDateRange {
|
10408
|
+
from
|
10409
|
+
to
|
10410
|
+
}
|
10411
|
+
createdInLast
|
10412
|
+
types
|
10413
|
+
fileTypes
|
10414
|
+
formats
|
10415
|
+
fileExtensions
|
10416
|
+
similarContents {
|
10417
|
+
id
|
10418
|
+
}
|
10419
|
+
contents {
|
10420
|
+
id
|
10421
|
+
}
|
10422
|
+
feeds {
|
10423
|
+
id
|
10424
|
+
}
|
10425
|
+
workflows {
|
10426
|
+
id
|
10427
|
+
}
|
10428
|
+
collections {
|
10429
|
+
id
|
10430
|
+
}
|
10431
|
+
users {
|
10432
|
+
id
|
10433
|
+
}
|
10434
|
+
observations {
|
10435
|
+
type
|
10436
|
+
observable {
|
10437
|
+
id
|
10438
|
+
}
|
10439
|
+
states
|
10440
|
+
}
|
10441
|
+
or {
|
10442
|
+
feeds {
|
10443
|
+
id
|
10444
|
+
}
|
10445
|
+
workflows {
|
10446
|
+
id
|
10447
|
+
}
|
10448
|
+
collections {
|
10449
|
+
id
|
10450
|
+
}
|
10451
|
+
users {
|
10452
|
+
id
|
10453
|
+
}
|
10454
|
+
observations {
|
10455
|
+
type
|
10456
|
+
observable {
|
10457
|
+
id
|
10458
|
+
}
|
10459
|
+
states
|
10460
|
+
}
|
10461
|
+
}
|
10462
|
+
and {
|
10463
|
+
feeds {
|
10464
|
+
id
|
10465
|
+
}
|
10466
|
+
workflows {
|
10467
|
+
id
|
10468
|
+
}
|
10469
|
+
collections {
|
10470
|
+
id
|
10471
|
+
}
|
10472
|
+
users {
|
10473
|
+
id
|
10474
|
+
}
|
10475
|
+
observations {
|
10476
|
+
type
|
10477
|
+
observable {
|
10478
|
+
id
|
10479
|
+
}
|
10480
|
+
states
|
10481
|
+
}
|
10482
|
+
}
|
10483
|
+
}
|
10484
|
+
augmentedFilter {
|
10485
|
+
dateRange {
|
10486
|
+
from
|
10487
|
+
to
|
10488
|
+
}
|
10489
|
+
inLast
|
10490
|
+
creationDateRange {
|
10491
|
+
from
|
10492
|
+
to
|
10493
|
+
}
|
10494
|
+
createdInLast
|
10495
|
+
types
|
10496
|
+
fileTypes
|
10497
|
+
formats
|
10498
|
+
fileExtensions
|
10499
|
+
similarContents {
|
10500
|
+
id
|
10501
|
+
}
|
10502
|
+
contents {
|
10503
|
+
id
|
10504
|
+
}
|
10505
|
+
feeds {
|
10506
|
+
id
|
10507
|
+
}
|
10508
|
+
workflows {
|
10509
|
+
id
|
10510
|
+
}
|
10511
|
+
collections {
|
10512
|
+
id
|
10513
|
+
}
|
10514
|
+
users {
|
10515
|
+
id
|
10516
|
+
}
|
10517
|
+
observations {
|
10518
|
+
type
|
10519
|
+
observable {
|
10520
|
+
id
|
10521
|
+
}
|
10522
|
+
states
|
10523
|
+
}
|
10524
|
+
or {
|
10525
|
+
feeds {
|
10526
|
+
id
|
10527
|
+
}
|
10528
|
+
workflows {
|
10529
|
+
id
|
10530
|
+
}
|
10531
|
+
collections {
|
10532
|
+
id
|
10533
|
+
}
|
10534
|
+
users {
|
10535
|
+
id
|
10536
|
+
}
|
10537
|
+
observations {
|
10538
|
+
type
|
10539
|
+
observable {
|
10540
|
+
id
|
10541
|
+
}
|
10542
|
+
states
|
10543
|
+
}
|
10544
|
+
}
|
10545
|
+
and {
|
10546
|
+
feeds {
|
10547
|
+
id
|
10548
|
+
}
|
10549
|
+
workflows {
|
10550
|
+
id
|
10551
|
+
}
|
10552
|
+
collections {
|
10553
|
+
id
|
10554
|
+
}
|
10555
|
+
users {
|
10556
|
+
id
|
10557
|
+
}
|
10558
|
+
observations {
|
10559
|
+
type
|
10560
|
+
observable {
|
10561
|
+
id
|
10562
|
+
}
|
10563
|
+
states
|
10564
|
+
}
|
10565
|
+
}
|
10566
|
+
}
|
10567
|
+
}
|
10568
|
+
}
|
10569
|
+
"""
|
10570
|
+
|
10571
|
+
DELETE_VIEW_GQL = """
|
10572
|
+
mutation DeleteView($id: ID!) {
|
10573
|
+
deleteView(id: $id) {
|
10574
|
+
id
|
10575
|
+
state
|
10576
|
+
}
|
10577
|
+
}
|
10578
|
+
"""
|
10579
|
+
|
10580
|
+
GET_VIEW_GQL = """
|
10581
|
+
query GetView($id: ID!, $correlationId: String) {
|
10582
|
+
view(id: $id, correlationId: $correlationId) {
|
10583
|
+
id
|
10584
|
+
name
|
10585
|
+
creationDate
|
10586
|
+
relevance
|
10587
|
+
owner {
|
10588
|
+
id
|
10589
|
+
}
|
10590
|
+
state
|
10591
|
+
type
|
10592
|
+
filter {
|
10593
|
+
dateRange {
|
10594
|
+
from
|
10595
|
+
to
|
10596
|
+
}
|
10597
|
+
inLast
|
10598
|
+
creationDateRange {
|
10599
|
+
from
|
10600
|
+
to
|
10601
|
+
}
|
10602
|
+
createdInLast
|
10603
|
+
types
|
10604
|
+
fileTypes
|
10605
|
+
formats
|
10606
|
+
fileExtensions
|
10607
|
+
similarContents {
|
10608
|
+
id
|
10609
|
+
}
|
10610
|
+
contents {
|
10611
|
+
id
|
10612
|
+
}
|
10613
|
+
feeds {
|
10614
|
+
id
|
10615
|
+
}
|
10616
|
+
workflows {
|
10617
|
+
id
|
10618
|
+
}
|
10619
|
+
collections {
|
10620
|
+
id
|
10621
|
+
}
|
10622
|
+
users {
|
10623
|
+
id
|
10624
|
+
}
|
10625
|
+
observations {
|
10626
|
+
type
|
10627
|
+
observable {
|
10628
|
+
id
|
10629
|
+
}
|
10630
|
+
states
|
10631
|
+
}
|
10632
|
+
or {
|
10633
|
+
feeds {
|
10634
|
+
id
|
10635
|
+
}
|
10636
|
+
workflows {
|
10637
|
+
id
|
10638
|
+
}
|
10639
|
+
collections {
|
10640
|
+
id
|
10641
|
+
}
|
10642
|
+
users {
|
10643
|
+
id
|
10644
|
+
}
|
10645
|
+
observations {
|
10646
|
+
type
|
10647
|
+
observable {
|
10648
|
+
id
|
10649
|
+
}
|
10650
|
+
states
|
10651
|
+
}
|
10652
|
+
}
|
10653
|
+
and {
|
10654
|
+
feeds {
|
10655
|
+
id
|
10656
|
+
}
|
10657
|
+
workflows {
|
10658
|
+
id
|
10659
|
+
}
|
10660
|
+
collections {
|
10661
|
+
id
|
10662
|
+
}
|
10663
|
+
users {
|
10664
|
+
id
|
10665
|
+
}
|
10666
|
+
observations {
|
10667
|
+
type
|
10668
|
+
observable {
|
10669
|
+
id
|
10670
|
+
}
|
10671
|
+
states
|
10672
|
+
}
|
10673
|
+
}
|
10674
|
+
}
|
10675
|
+
augmentedFilter {
|
10676
|
+
dateRange {
|
10677
|
+
from
|
10678
|
+
to
|
10679
|
+
}
|
10680
|
+
inLast
|
10681
|
+
creationDateRange {
|
10682
|
+
from
|
10683
|
+
to
|
10684
|
+
}
|
10685
|
+
createdInLast
|
10686
|
+
types
|
10687
|
+
fileTypes
|
10688
|
+
formats
|
10689
|
+
fileExtensions
|
10690
|
+
similarContents {
|
10691
|
+
id
|
10692
|
+
}
|
10693
|
+
contents {
|
10694
|
+
id
|
10695
|
+
}
|
10696
|
+
feeds {
|
10697
|
+
id
|
10698
|
+
}
|
10699
|
+
workflows {
|
10700
|
+
id
|
10701
|
+
}
|
10702
|
+
collections {
|
10703
|
+
id
|
10704
|
+
}
|
10705
|
+
users {
|
10706
|
+
id
|
10707
|
+
}
|
10708
|
+
observations {
|
10709
|
+
type
|
10710
|
+
observable {
|
10711
|
+
id
|
10712
|
+
}
|
10713
|
+
states
|
10714
|
+
}
|
10715
|
+
or {
|
10716
|
+
feeds {
|
10717
|
+
id
|
10718
|
+
}
|
10719
|
+
workflows {
|
10720
|
+
id
|
10721
|
+
}
|
10722
|
+
collections {
|
10723
|
+
id
|
10724
|
+
}
|
10725
|
+
users {
|
10726
|
+
id
|
10727
|
+
}
|
10728
|
+
observations {
|
10729
|
+
type
|
10730
|
+
observable {
|
10731
|
+
id
|
10732
|
+
}
|
10733
|
+
states
|
10734
|
+
}
|
10735
|
+
}
|
10736
|
+
and {
|
10737
|
+
feeds {
|
10738
|
+
id
|
10739
|
+
}
|
10740
|
+
workflows {
|
10741
|
+
id
|
10742
|
+
}
|
10743
|
+
collections {
|
10744
|
+
id
|
10745
|
+
}
|
10746
|
+
users {
|
10747
|
+
id
|
10748
|
+
}
|
10749
|
+
observations {
|
10750
|
+
type
|
10751
|
+
observable {
|
10752
|
+
id
|
10753
|
+
}
|
10754
|
+
states
|
10755
|
+
}
|
10756
|
+
}
|
10757
|
+
}
|
10758
|
+
}
|
10759
|
+
}
|
10760
|
+
"""
|
10761
|
+
|
10762
|
+
QUERY_VIEWS_GQL = """
|
10763
|
+
query QueryViews($filter: ViewFilter, $correlationId: String) {
|
10764
|
+
views(filter: $filter, correlationId: $correlationId) {
|
10765
|
+
results {
|
10766
|
+
id
|
10767
|
+
name
|
10768
|
+
creationDate
|
10769
|
+
relevance
|
10770
|
+
owner {
|
10771
|
+
id
|
10772
|
+
}
|
10773
|
+
state
|
10774
|
+
type
|
10775
|
+
filter {
|
10776
|
+
dateRange {
|
10777
|
+
from
|
10778
|
+
to
|
10779
|
+
}
|
10780
|
+
inLast
|
10781
|
+
creationDateRange {
|
10782
|
+
from
|
10783
|
+
to
|
10784
|
+
}
|
10785
|
+
createdInLast
|
10786
|
+
types
|
10787
|
+
fileTypes
|
10788
|
+
formats
|
10789
|
+
fileExtensions
|
10790
|
+
similarContents {
|
10791
|
+
id
|
10792
|
+
}
|
10793
|
+
contents {
|
10794
|
+
id
|
10795
|
+
}
|
10796
|
+
feeds {
|
10797
|
+
id
|
10798
|
+
}
|
10799
|
+
workflows {
|
10800
|
+
id
|
10801
|
+
}
|
10802
|
+
collections {
|
10803
|
+
id
|
10804
|
+
}
|
10805
|
+
users {
|
10806
|
+
id
|
10807
|
+
}
|
10808
|
+
observations {
|
10809
|
+
type
|
10810
|
+
observable {
|
10811
|
+
id
|
10812
|
+
}
|
10813
|
+
states
|
10814
|
+
}
|
10815
|
+
or {
|
10816
|
+
feeds {
|
10817
|
+
id
|
10818
|
+
}
|
10819
|
+
workflows {
|
10820
|
+
id
|
10821
|
+
}
|
10822
|
+
collections {
|
10823
|
+
id
|
10824
|
+
}
|
10825
|
+
users {
|
10826
|
+
id
|
10827
|
+
}
|
10828
|
+
observations {
|
10829
|
+
type
|
10830
|
+
observable {
|
10831
|
+
id
|
10832
|
+
}
|
10833
|
+
states
|
10834
|
+
}
|
10835
|
+
}
|
10836
|
+
and {
|
10837
|
+
feeds {
|
10838
|
+
id
|
10839
|
+
}
|
10840
|
+
workflows {
|
10841
|
+
id
|
10842
|
+
}
|
10843
|
+
collections {
|
10844
|
+
id
|
10845
|
+
}
|
10846
|
+
users {
|
10847
|
+
id
|
10848
|
+
}
|
10849
|
+
observations {
|
10850
|
+
type
|
10851
|
+
observable {
|
10852
|
+
id
|
10853
|
+
}
|
10854
|
+
states
|
10855
|
+
}
|
10856
|
+
}
|
10857
|
+
}
|
10858
|
+
augmentedFilter {
|
10859
|
+
dateRange {
|
10860
|
+
from
|
10861
|
+
to
|
10862
|
+
}
|
10863
|
+
inLast
|
10864
|
+
creationDateRange {
|
10865
|
+
from
|
10866
|
+
to
|
10867
|
+
}
|
10868
|
+
createdInLast
|
10869
|
+
types
|
10870
|
+
fileTypes
|
10871
|
+
formats
|
10872
|
+
fileExtensions
|
10873
|
+
similarContents {
|
10874
|
+
id
|
10875
|
+
}
|
10876
|
+
contents {
|
10877
|
+
id
|
10878
|
+
}
|
10879
|
+
feeds {
|
10880
|
+
id
|
10881
|
+
}
|
10882
|
+
workflows {
|
10883
|
+
id
|
10884
|
+
}
|
10885
|
+
collections {
|
10886
|
+
id
|
10887
|
+
}
|
10888
|
+
users {
|
10889
|
+
id
|
10890
|
+
}
|
10891
|
+
observations {
|
10892
|
+
type
|
10893
|
+
observable {
|
10894
|
+
id
|
10895
|
+
}
|
10896
|
+
states
|
10897
|
+
}
|
10898
|
+
or {
|
10899
|
+
feeds {
|
10900
|
+
id
|
10901
|
+
}
|
10902
|
+
workflows {
|
10903
|
+
id
|
10904
|
+
}
|
10905
|
+
collections {
|
10906
|
+
id
|
10907
|
+
}
|
10908
|
+
users {
|
10909
|
+
id
|
10910
|
+
}
|
10911
|
+
observations {
|
10912
|
+
type
|
10913
|
+
observable {
|
10914
|
+
id
|
10915
|
+
}
|
10916
|
+
states
|
10917
|
+
}
|
10918
|
+
}
|
10919
|
+
and {
|
10920
|
+
feeds {
|
10921
|
+
id
|
10922
|
+
}
|
10923
|
+
workflows {
|
10924
|
+
id
|
10925
|
+
}
|
10926
|
+
collections {
|
10927
|
+
id
|
10928
|
+
}
|
10929
|
+
users {
|
10930
|
+
id
|
10931
|
+
}
|
10932
|
+
observations {
|
10933
|
+
type
|
10934
|
+
observable {
|
10935
|
+
id
|
10936
|
+
}
|
10937
|
+
states
|
10938
|
+
}
|
10939
|
+
}
|
10940
|
+
}
|
10941
|
+
}
|
10942
|
+
}
|
10943
|
+
}
|
10944
|
+
"""
|
10945
|
+
|
10946
|
+
UPDATE_VIEW_GQL = """
|
10947
|
+
mutation UpdateView($view: ViewUpdateInput!) {
|
10948
|
+
updateView(view: $view) {
|
10949
|
+
id
|
10950
|
+
name
|
10951
|
+
state
|
10952
|
+
type
|
10953
|
+
filter {
|
10954
|
+
dateRange {
|
10955
|
+
from
|
10956
|
+
to
|
10957
|
+
}
|
10958
|
+
inLast
|
10959
|
+
creationDateRange {
|
10960
|
+
from
|
10961
|
+
to
|
10962
|
+
}
|
10963
|
+
createdInLast
|
10964
|
+
types
|
10965
|
+
fileTypes
|
10966
|
+
formats
|
10967
|
+
fileExtensions
|
10968
|
+
similarContents {
|
10969
|
+
id
|
10970
|
+
}
|
10971
|
+
contents {
|
10972
|
+
id
|
10973
|
+
}
|
10974
|
+
feeds {
|
10975
|
+
id
|
10976
|
+
}
|
10977
|
+
workflows {
|
10978
|
+
id
|
10979
|
+
}
|
10980
|
+
collections {
|
10981
|
+
id
|
10982
|
+
}
|
10983
|
+
users {
|
10984
|
+
id
|
10985
|
+
}
|
10986
|
+
observations {
|
10987
|
+
type
|
10988
|
+
observable {
|
10989
|
+
id
|
10990
|
+
}
|
10991
|
+
states
|
10992
|
+
}
|
10993
|
+
or {
|
10994
|
+
feeds {
|
10995
|
+
id
|
10996
|
+
}
|
10997
|
+
workflows {
|
10998
|
+
id
|
10999
|
+
}
|
11000
|
+
collections {
|
11001
|
+
id
|
11002
|
+
}
|
11003
|
+
users {
|
11004
|
+
id
|
11005
|
+
}
|
11006
|
+
observations {
|
11007
|
+
type
|
11008
|
+
observable {
|
11009
|
+
id
|
11010
|
+
}
|
11011
|
+
states
|
11012
|
+
}
|
11013
|
+
}
|
11014
|
+
and {
|
11015
|
+
feeds {
|
11016
|
+
id
|
11017
|
+
}
|
11018
|
+
workflows {
|
11019
|
+
id
|
11020
|
+
}
|
11021
|
+
collections {
|
11022
|
+
id
|
11023
|
+
}
|
11024
|
+
users {
|
11025
|
+
id
|
11026
|
+
}
|
11027
|
+
observations {
|
11028
|
+
type
|
11029
|
+
observable {
|
11030
|
+
id
|
11031
|
+
}
|
11032
|
+
states
|
11033
|
+
}
|
11034
|
+
}
|
11035
|
+
}
|
11036
|
+
augmentedFilter {
|
11037
|
+
dateRange {
|
11038
|
+
from
|
11039
|
+
to
|
11040
|
+
}
|
11041
|
+
inLast
|
11042
|
+
creationDateRange {
|
11043
|
+
from
|
11044
|
+
to
|
11045
|
+
}
|
11046
|
+
createdInLast
|
11047
|
+
types
|
11048
|
+
fileTypes
|
11049
|
+
formats
|
11050
|
+
fileExtensions
|
11051
|
+
similarContents {
|
11052
|
+
id
|
11053
|
+
}
|
11054
|
+
contents {
|
11055
|
+
id
|
11056
|
+
}
|
11057
|
+
feeds {
|
11058
|
+
id
|
11059
|
+
}
|
11060
|
+
workflows {
|
11061
|
+
id
|
11062
|
+
}
|
11063
|
+
collections {
|
11064
|
+
id
|
11065
|
+
}
|
11066
|
+
users {
|
11067
|
+
id
|
11068
|
+
}
|
11069
|
+
observations {
|
11070
|
+
type
|
11071
|
+
observable {
|
11072
|
+
id
|
11073
|
+
}
|
11074
|
+
states
|
11075
|
+
}
|
11076
|
+
or {
|
11077
|
+
feeds {
|
11078
|
+
id
|
11079
|
+
}
|
11080
|
+
workflows {
|
11081
|
+
id
|
11082
|
+
}
|
11083
|
+
collections {
|
11084
|
+
id
|
11085
|
+
}
|
11086
|
+
users {
|
11087
|
+
id
|
11088
|
+
}
|
11089
|
+
observations {
|
11090
|
+
type
|
11091
|
+
observable {
|
11092
|
+
id
|
11093
|
+
}
|
11094
|
+
states
|
11095
|
+
}
|
11096
|
+
}
|
11097
|
+
and {
|
11098
|
+
feeds {
|
11099
|
+
id
|
11100
|
+
}
|
11101
|
+
workflows {
|
11102
|
+
id
|
11103
|
+
}
|
11104
|
+
collections {
|
11105
|
+
id
|
11106
|
+
}
|
11107
|
+
users {
|
11108
|
+
id
|
11109
|
+
}
|
11110
|
+
observations {
|
11111
|
+
type
|
11112
|
+
observable {
|
11113
|
+
id
|
11114
|
+
}
|
11115
|
+
states
|
11116
|
+
}
|
11117
|
+
}
|
11118
|
+
}
|
11119
|
+
}
|
11120
|
+
}
|
11121
|
+
"""
|
11122
|
+
|
9924
11123
|
COUNT_WORKFLOWS_GQL = """
|
9925
11124
|
query CountWorkflows($filter: WorkflowFilter, $correlationId: String) {
|
9926
11125
|
countWorkflows(filter: $filter, correlationId: $correlationId) {
|
@@ -10096,6 +11295,8 @@ mutation CreateWorkflow($workflow: WorkflowInput!) {
|
|
10096
11295
|
excludedLinks
|
10097
11296
|
allowedFiles
|
10098
11297
|
excludedFiles
|
11298
|
+
allowedContentTypes
|
11299
|
+
excludedContentTypes
|
10099
11300
|
allowContentDomain
|
10100
11301
|
maximumLinks
|
10101
11302
|
}
|
@@ -10346,6 +11547,8 @@ query GetWorkflow($id: ID!, $correlationId: String) {
|
|
10346
11547
|
excludedLinks
|
10347
11548
|
allowedFiles
|
10348
11549
|
excludedFiles
|
11550
|
+
allowedContentTypes
|
11551
|
+
excludedContentTypes
|
10349
11552
|
allowContentDomain
|
10350
11553
|
maximumLinks
|
10351
11554
|
}
|
@@ -10566,6 +11769,8 @@ query QueryWorkflows($filter: WorkflowFilter, $correlationId: String) {
|
|
10566
11769
|
excludedLinks
|
10567
11770
|
allowedFiles
|
10568
11771
|
excludedFiles
|
11772
|
+
allowedContentTypes
|
11773
|
+
excludedContentTypes
|
10569
11774
|
allowContentDomain
|
10570
11775
|
maximumLinks
|
10571
11776
|
}
|
@@ -10781,6 +11986,8 @@ mutation UpdateWorkflow($workflow: WorkflowUpdateInput!) {
|
|
10781
11986
|
excludedLinks
|
10782
11987
|
allowedFiles
|
10783
11988
|
excludedFiles
|
11989
|
+
allowedContentTypes
|
11990
|
+
excludedContentTypes
|
10784
11991
|
allowContentDomain
|
10785
11992
|
maximumLinks
|
10786
11993
|
}
|
@@ -10995,6 +12202,8 @@ mutation UpsertWorkflow($workflow: WorkflowInput!) {
|
|
10995
12202
|
excludedLinks
|
10996
12203
|
allowedFiles
|
10997
12204
|
excludedFiles
|
12205
|
+
allowedContentTypes
|
12206
|
+
excludedContentTypes
|
10998
12207
|
allowContentDomain
|
10999
12208
|
maximumLinks
|
11000
12209
|
}
|