Skip to content

Commit 79227d8

Browse files
committed
common: fix indexerStatus (paused) query
1 parent ce0b06c commit 79227d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/indexer-common/src/graph-node.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class GraphNode {
173173

174174
const withAssignments: string[] = nodeOnlyResult.data.indexingStatuses
175175
.filter((result: QueryResult) => {
176-
return result.node !== undefined
176+
return result.node !== null && result.node !== undefined
177177
})
178178
.map((result: QueryResult) => {
179179
return result.subgraphDeployment

0 commit comments

Comments
 (0)