Skip to content

Commit

Permalink
remove ghosts from graphql args
Browse files Browse the repository at this point in the history
  • Loading branch information
dwsutherland committed Mar 31, 2022
1 parent 81f9be9 commit e383e92
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 331 deletions.
14 changes: 7 additions & 7 deletions src/graphql/queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,13 +243,13 @@ fragment WorkflowTreeAddedData on Added {
workflow {
...WorkflowData
}
cyclePoints: familyProxies (ids: ["*/root"], ghosts: true) {
cyclePoints: familyProxies (ids: ["*/root"]) {
...CyclePointData
}
familyProxies (exids: ["*/root"], sort: { keys: ["name"] }, ghosts: true) {
familyProxies (exids: ["*/root"], sort: { keys: ["name"] }) {
...FamilyProxyData
}
taskProxies (sort: { keys: ["cyclePoint"], reverse: false }, ghosts: true) {
taskProxies (sort: { keys: ["cyclePoint"], reverse: false }) {
...TaskProxyData
}
jobs (sort: { keys: ["submit_num"], reverse:true }) {
Expand All @@ -258,13 +258,13 @@ fragment WorkflowTreeAddedData on Added {
}
fragment WorkflowTreeUpdatedData on Updated {
taskProxies (ghosts: true) {
taskProxies {
...TaskProxyData
}
jobs {
...JobData
}
familyProxies (exids: ["*/root"], ghosts: true) {
familyProxies (exids: ["*/root"]) {
...FamilyProxyData
}
}
Expand Down Expand Up @@ -323,7 +323,7 @@ fragment WorkflowTableAddedData on Added {
workflow {
...WorkflowData
}
taskProxies(sort: {keys: ["cyclePoint"], reverse: false}, ghosts: true) {
taskProxies(sort: {keys: ["cyclePoint"], reverse: false}) {
...TaskProxyData
}
jobs(sort: {keys: ["submit_num"], reverse: true}) {
Expand All @@ -332,7 +332,7 @@ fragment WorkflowTableAddedData on Added {
}
fragment WorkflowTableUpdatedData on Updated {
taskProxies(ghosts: true) {
taskProxies {
...TaskProxyData
}
jobs {
Expand Down
Loading

0 comments on commit e383e92

Please sign in to comment.