We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce0b06c commit 79227d8Copy full SHA for 79227d8
packages/indexer-common/src/graph-node.ts
@@ -173,7 +173,7 @@ export class GraphNode {
173
174
const withAssignments: string[] = nodeOnlyResult.data.indexingStatuses
175
.filter((result: QueryResult) => {
176
- return result.node !== undefined
+ return result.node !== null && result.node !== undefined
177
})
178
.map((result: QueryResult) => {
179
return result.subgraphDeployment
0 commit comments