Skip to content

Commit 455af6d

Browse files
committed
Updated to latest API release.
1 parent 6ee8885 commit 455af6d

24 files changed

+110
-0
lines changed

documents/skill/CreateSkill.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ mutation CreateSkill($skill: SkillInput!, $correlationId: String) {
33
id
44
name
55
state
6+
identifier
67
skillOwner
78
arguments {
89
name

documents/skill/GetSkill.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ query GetSkill($id: ID!, $correlationId: String) {
88
id
99
}
1010
state
11+
identifier
1112
correlationId
1213
text
1314
skillOwner

documents/skill/QuerySkills.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ query QuerySkills($filter: SkillFilter, $correlationId: String) {
1010
id
1111
}
1212
state
13+
identifier
1314
correlationId
1415
text
1516
skillOwner

documents/skill/UpdateSkill.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ mutation UpdateSkill($skill: SkillUpdateInput!) {
33
id
44
name
55
state
6+
identifier
67
skillOwner
78
arguments {
89
name

documents/skill/UpsertSkill.graphql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ mutation UpsertSkill($skill: SkillInput!) {
33
id
44
name
55
state
6+
identifier
67
skillOwner
78
arguments {
89
name

documents/workflow/CreateWorkflow.graphql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,9 @@ mutation CreateWorkflow($workflow: WorkflowInput!) {
205205
crustdata {
206206
isRealtime
207207
}
208+
waterfall {
209+
depth
210+
}
208211
}
209212
}
210213
entityResolution {

documents/workflow/GetWorkflow.graphql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,9 @@ query GetWorkflow($id: ID!, $correlationId: String) {
210210
crustdata {
211211
isRealtime
212212
}
213+
waterfall {
214+
depth
215+
}
213216
}
214217
}
215218
entityResolution {

documents/workflow/QueryWorkflows.graphql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ query QueryWorkflows($filter: WorkflowFilter, $correlationId: String) {
212212
crustdata {
213213
isRealtime
214214
}
215+
waterfall {
216+
depth
217+
}
215218
}
216219
}
217220
entityResolution {

documents/workflow/UpdateWorkflow.graphql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,9 @@ mutation UpdateWorkflow($workflow: WorkflowUpdateInput!) {
205205
crustdata {
206206
isRealtime
207207
}
208+
waterfall {
209+
depth
210+
}
208211
}
209212
}
210213
entityResolution {

documents/workflow/UpsertWorkflow.graphql

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,9 @@ mutation UpsertWorkflow($workflow: WorkflowInput!) {
205205
crustdata {
206206
isRealtime
207207
}
208+
waterfall {
209+
depth
210+
}
208211
}
209212
}
210213
entityResolution {

0 commit comments

Comments
 (0)