Skip to content

Commit

Permalink
indexer-common: fix paused mechanism
Browse files Browse the repository at this point in the history
  • Loading branch information
dwerner committed Aug 16, 2024
1 parent ca9f2db commit 46656dc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions packages/indexer-common/src/graph-node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,14 +182,14 @@ export class GraphNode {
const result = await this.status
.query(
gql`
{
indexingStatuses($subgraphs) {
subgraphDeployment: subgraph
node
paused
query indexingStatuses($subgraphs: [String!]!) {
indexingStatuses(subgraphs: $subgraphs) {
subgraphDeployment: subgraph
node
paused
}
}
}
`,
`,
{ subgraphs: withAssignments },
)
.toPromise()
Expand Down

0 comments on commit 46656dc

Please sign in to comment.