Skip to content

Commit 2451f25

Browse files
committed
.
1 parent eb81cd5 commit 2451f25

26 files changed

+827
-14
lines changed

documents/content/GetContent.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ query GetContent($id: ID!) {
1313
workflowDuration
1414
uri
1515
description
16+
identifier
1617
markdown
1718
address {
1819
streetAddress

documents/content/QueryContents.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ query QueryContents($filter: ContentFilter) {
1414
workflowDuration
1515
uri
1616
description
17+
identifier
1718
markdown
1819
address {
1920
streetAddress

documents/content/QueryContentsFacets.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ query QueryContentsFacets($filter: ContentFilter, $facets: [ContentFacetInput!])
1414
workflowDuration
1515
uri
1616
description
17+
identifier
1718
markdown
1819
address {
1920
streetAddress

documents/conversation/GetConversation.graphql

+68
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ query GetConversation($id: ID!) {
2020
name
2121
state
2222
originalDate
23+
identifier
2324
uri
2425
type
2526
fileType
@@ -196,5 +197,72 @@ query GetConversation($id: ID!) {
196197
}
197198
}
198199
}
200+
augmentedFilter {
201+
dateRange {
202+
from
203+
to
204+
}
205+
creationDateRange {
206+
from
207+
to
208+
}
209+
types
210+
fileTypes
211+
contents {
212+
id
213+
}
214+
feeds {
215+
id
216+
}
217+
workflows {
218+
id
219+
}
220+
collections {
221+
id
222+
}
223+
observations {
224+
type
225+
observable {
226+
id
227+
}
228+
states
229+
}
230+
or {
231+
feeds {
232+
id
233+
}
234+
workflows {
235+
id
236+
}
237+
collections {
238+
id
239+
}
240+
observations {
241+
type
242+
observable {
243+
id
244+
}
245+
states
246+
}
247+
}
248+
and {
249+
feeds {
250+
id
251+
}
252+
workflows {
253+
id
254+
}
255+
collections {
256+
id
257+
}
258+
observations {
259+
type
260+
observable {
261+
id
262+
}
263+
states
264+
}
265+
}
266+
}
199267
}
200268
}

documents/conversation/PromptConversation.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ mutation PromptConversation($prompt: String!, $id: ID, $correlationId: String) {
1313
name
1414
state
1515
originalDate
16+
identifier
1617
uri
1718
type
1819
fileType

documents/conversation/QueryConversations.graphql

+68
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ query QueryConversations($filter: ConversationFilter) {
2121
name
2222
state
2323
originalDate
24+
identifier
2425
uri
2526
type
2627
fileType
@@ -197,6 +198,73 @@ query QueryConversations($filter: ConversationFilter) {
197198
}
198199
}
199200
}
201+
augmentedFilter {
202+
dateRange {
203+
from
204+
to
205+
}
206+
creationDateRange {
207+
from
208+
to
209+
}
210+
types
211+
fileTypes
212+
contents {
213+
id
214+
}
215+
feeds {
216+
id
217+
}
218+
workflows {
219+
id
220+
}
221+
collections {
222+
id
223+
}
224+
observations {
225+
type
226+
observable {
227+
id
228+
}
229+
states
230+
}
231+
or {
232+
feeds {
233+
id
234+
}
235+
workflows {
236+
id
237+
}
238+
collections {
239+
id
240+
}
241+
observations {
242+
type
243+
observable {
244+
id
245+
}
246+
states
247+
}
248+
}
249+
and {
250+
feeds {
251+
id
252+
}
253+
workflows {
254+
id
255+
}
256+
collections {
257+
id
258+
}
259+
observations {
260+
type
261+
observable {
262+
id
263+
}
264+
states
265+
}
266+
}
267+
}
200268
}
201269
}
202270
}

documents/specification/PromptSpecifications.graphql

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ mutation PromptSpecifications($prompt: String!, $ids: [ID!]!) {
1313
name
1414
state
1515
originalDate
16+
identifier
1617
uri
1718
type
1819
fileType

documents/workflow/CreateWorkflow.graphql

+5
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ mutation CreateWorkflow($workflow: WorkflowInput!) {
5656
email {
5757
includeAttachments
5858
}
59+
modelDocument {
60+
specification {
61+
id
62+
}
63+
}
5964
}
6065
}
6166
}

documents/workflow/GetWorkflow.graphql

+5
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ query GetWorkflow($id: ID!) {
6161
email {
6262
includeAttachments
6363
}
64+
modelDocument {
65+
specification {
66+
id
67+
}
68+
}
6469
}
6570
}
6671
}

documents/workflow/QueryWorkflows.graphql

+5
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ query QueryWorkflows($filter: WorkflowFilter) {
6262
email {
6363
includeAttachments
6464
}
65+
modelDocument {
66+
specification {
67+
id
68+
}
69+
}
6570
}
6671
}
6772
}

documents/workflow/UpdateWorkflow.graphql

+5
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ mutation UpdateWorkflow($workflow: WorkflowUpdateInput!) {
5656
email {
5757
includeAttachments
5858
}
59+
modelDocument {
60+
specification {
61+
id
62+
}
63+
}
5964
}
6065
}
6166
}

0 commit comments

Comments
 (0)