Skip to content

Commit 83ccb87

Browse files
committed
Latest PROD release
1 parent 8815b38 commit 83ccb87

File tree

130 files changed

+3828
-756
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+3828
-756
lines changed

documents/alert/CountAlerts.graphql

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
query CountAlerts($filter: AlertFilter) {
2+
countAlerts(filter: $filter) {
3+
count
4+
}
5+
}

documents/alert/DeleteAlerts.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteAlerts($ids: [ID!]!) {
2-
deleteAlerts(ids: $ids) {
1+
mutation DeleteAlerts($ids: [ID!]!, $isSynchronous: Boolean) {
2+
deleteAlerts(ids: $ids, isSynchronous: $isSynchronous) {
33
id
44
state
55
}

documents/alert/DeleteAllAlerts.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteAllAlerts {
2-
deleteAllAlerts {
1+
mutation DeleteAllAlerts($filter: AlertFilter, $isSynchronous: Boolean, $correlationId: String) {
2+
deleteAllAlerts(filter: $filter, isSynchronous: $isSynchronous, correlationId: $correlationId) {
33
id
44
state
55
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
query CountCategories($filter: CategoryFilter) {
2+
countCategories(filter: $filter) {
3+
count
4+
}
5+
}

documents/category/DeleteAllCategories.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteAllCategories($filter: CategoryFilter!) {
2-
deleteAllCategories(filter: $filter) {
1+
mutation DeleteAllCategories($filter: CategoryFilter, $isSynchronous: Boolean, $correlationId: String) {
2+
deleteAllCategories(filter: $filter, isSynchronous: $isSynchronous, correlationId: $correlationId) {
33
id
44
state
55
}

documents/category/DeleteCategories.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteCategories($ids: [ID!]!) {
2-
deleteCategories(ids: $ids) {
1+
mutation DeleteCategories($ids: [ID!]!, $isSynchronous: Boolean) {
2+
deleteCategories(ids: $ids, isSynchronous: $isSynchronous) {
33
id
44
state
55
}

documents/category/QueryCategories.graphql

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
query QueryCategories($filter: CategoryFilter!) {
1+
query QueryCategories($filter: CategoryFilter) {
22
categories(filter: $filter) {
33
results {
44
id
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
query CountCollections($filter: CollectionFilter) {
2+
countCollections(filter: $filter) {
3+
count
4+
}
5+
}

documents/collection/DeleteAllCollections.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteAllCollections {
2-
deleteAllCollections {
1+
mutation DeleteAllCollections($filter: CollectionFilter, $isSynchronous: Boolean, $correlationId: String) {
2+
deleteAllCollections(filter: $filter, isSynchronous: $isSynchronous, correlationId: $correlationId) {
33
id
44
state
55
}

documents/collection/DeleteCollections.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteCollections($ids: [ID!]!) {
2-
deleteCollections(ids: $ids) {
1+
mutation DeleteCollections($ids: [ID!]!, $isSynchronous: Boolean) {
2+
deleteCollections(ids: $ids, isSynchronous: $isSynchronous) {
33
id
44
state
55
}
+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
query CountContents($filter: ContentFilter) {
2+
countContents(filter: $filter) {
3+
count
4+
}
5+
}

documents/content/DeleteAllContents.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteAllContents {
2-
deleteAllContents {
1+
mutation DeleteAllContents($filter: ContentFilter, $isSynchronous: Boolean, $correlationId: String) {
2+
deleteAllContents(filter: $filter, isSynchronous: $isSynchronous, correlationId: $correlationId) {
33
id
44
state
55
}

documents/content/DeleteContents.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
mutation DeleteContents($ids: [ID!]!) {
2-
deleteContents(ids: $ids) {
1+
mutation DeleteContents($ids: [ID!]!, $isSynchronous: Boolean) {
2+
deleteContents(ids: $ids, isSynchronous: $isSynchronous) {
33
id
44
state
55
}

documents/content/GetContent.graphql

+95-38
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ query GetContent($id: ID!) {
22
content(id: $id) {
33
id
44
name
5-
description
65
creationDate
76
owner {
87
id
@@ -12,6 +11,19 @@ query GetContent($id: ID!) {
1211
finishedDate
1312
workflowDuration
1413
uri
14+
description
15+
markdown
16+
address {
17+
streetAddress
18+
city
19+
region
20+
country
21+
postalCode
22+
}
23+
location {
24+
latitude
25+
longitude
26+
}
1527
type
1628
fileType
1729
mimeType
@@ -26,9 +38,13 @@ query GetContent($id: ID!) {
2638
width
2739
height
2840
duration
29-
software
3041
make
3142
model
43+
software
44+
title
45+
description
46+
keywords
47+
author
3248
}
3349
audio {
3450
keywords
@@ -42,6 +58,7 @@ query GetContent($id: ID!) {
4258
language
4359
genre
4460
title
61+
description
4562
bitrate
4663
channels
4764
sampleRate
@@ -51,74 +68,110 @@ query GetContent($id: ID!) {
5168
image {
5269
width
5370
height
71+
resolutionX
72+
resolutionY
73+
bitsPerComponent
74+
components
75+
projectionType
76+
orientation
5477
description
55-
software
56-
identifier
5778
make
5879
model
80+
software
81+
lens
82+
focalLength
83+
exposureTime
84+
fNumber
85+
iso
86+
heading
87+
pitch
5988
}
6089
document {
6190
title
6291
subject
92+
summary
6393
author
64-
software
6594
publisher
6695
description
67-
summary
6896
keywords
6997
pageCount
7098
worksheetCount
71-
slideCount
99+
slideCount
72100
wordCount
73101
lineCount
74102
paragraphCount
75-
characterCount
76103
isEncrypted
77104
hasDigitalSignature
78105
}
79106
email {
80-
subject
81107
identifier
108+
subject
109+
labels
82110
sensitivity
83111
priority
84112
importance
85-
labels
86113
from {
87114
name
88-
familyName
89-
givenName
90115
email
116+
givenName
117+
familyName
91118
}
92119
to {
93120
name
94-
familyName
95-
givenName
96121
email
122+
givenName
123+
familyName
97124
}
98125
cc {
99126
name
100-
familyName
101-
givenName
102127
email
128+
givenName
129+
familyName
103130
}
104131
bcc {
105132
name
106-
familyName
107-
givenName
108133
email
134+
givenName
135+
familyName
109136
}
110137
}
111138
issue {
139+
identifier
112140
title
113141
project
114142
team
115143
status
116144
priority
117145
type
118-
identifier
119146
labels
120147
}
148+
package {
149+
fileCount
150+
folderCount
151+
isEncrypted
152+
}
153+
parent {
154+
id
155+
name
156+
}
157+
children {
158+
id
159+
name
160+
}
161+
feed {
162+
id
163+
name
164+
}
165+
collections {
166+
id
167+
name
168+
}
169+
links {
170+
uri
171+
linkType
172+
}
121173
observations {
174+
id
122175
type
123176
observable {
124177
id
@@ -127,36 +180,40 @@ query GetContent($id: ID!) {
127180
occurrences {
128181
type
129182
confidence
183+
startTime
184+
endTime
185+
pageIndex
130186
boundingBox {
131187
left
132188
top
133189
width
134190
height
135191
}
136-
pageIndex
137-
startTime
138-
endTime
139192
}
140-
}
141-
parent {
142-
id
143-
}
144-
children {
145-
id
146-
}
147-
collections {
148-
id
149-
}
150-
feed {
151-
id
193+
state
152194
}
153195
workflow {
154196
id
197+
name
155198
}
156-
markdown
157-
links {
158-
uri
159-
linkType
199+
pages {
200+
index
201+
chunks {
202+
index
203+
pageIndex
204+
rowIndex
205+
columnIndex
206+
confidence
207+
text
208+
role
209+
relevance
210+
}
211+
}
212+
segments {
213+
startTime
214+
endTime
215+
text
216+
relevance
160217
}
161218
error
162219
}

documents/content/IngestEncodedFile.graphql

+4
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,9 @@ mutation IngestEncodedFile($name: String!, $data: String!, $mimeType: String!, $
77
fileType
88
mimeType
99
uri
10+
collections {
11+
id
12+
name
13+
}
1014
}
1115
}

documents/content/IngestText.graphql

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
mutation IngestText($name: String!, $text: String!, $textType: TextTypes, $uri: URL, $id: ID, $isSynchronous: Boolean, $collections: [EntityReferenceInput!], $workflow: EntityReferenceInput, $correlationId: String) {
2-
ingestText(name: $name, text: $text, textType: $textType, uri: $uri, id: $id, isSynchronous: $isSynchronous, collections: $collections, workflow: $workflow, correlationId: $correlationId) {
1+
mutation IngestText($name: String!, $text: String!, $textType: TextTypes, $uri: URL, $id: ID, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $correlationId: String) {
2+
ingestText(name: $name, text: $text, textType: $textType, uri: $uri, id: $id, isSynchronous: $isSynchronous, workflow: $workflow, collections: $collections, correlationId: $correlationId) {
33
id
44
name
55
state
66
type
77
fileType
88
mimeType
99
uri
10+
collections {
11+
id
12+
name
13+
}
1014
}
1115
}

documents/content/IngestUri.graphql

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
1-
mutation IngestUri($name: String, $uri: URL!, $id: ID, $isSynchronous: Boolean, $collections: [EntityReferenceInput!], $workflow: EntityReferenceInput, $correlationId: String) {
2-
ingestUri(name: $name, uri: $uri, id: $id, collections: $collections, workflow: $workflow, isSynchronous: $isSynchronous, correlationId: $correlationId) {
1+
mutation IngestUri($name: String, $uri: URL!, $id: ID, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $correlationId: String) {
2+
ingestUri(name: $name, uri: $uri, id: $id, workflow: $workflow, collections: $collections, isSynchronous: $isSynchronous, correlationId: $correlationId) {
33
id
44
name
55
state
66
type
77
fileType
88
mimeType
99
uri
10+
collections {
11+
id
12+
name
13+
}
1014
}
1115
}

0 commit comments

Comments
 (0)