Skip to content

Commit e2e6925

Browse files
authored
fix: resolves #5550 - make graphql value nullable (#5551)
1 parent 2d751ca commit e2e6925

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

server/index-node/src/schema.graphql

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,12 @@ type SubgraphIndexingStatus {
7070
nonFatalErrors: [SubgraphError!]!
7171
chains: [ChainIndexingStatus!]!
7272
entityCount: BigInt!
73+
74+
"null if deployment is not assigned to an indexing node"
7375
node: String
74-
paused: Boolean!
76+
"null if deployment is not assigned to an indexing node"
77+
paused: Boolean
78+
7579
historyBlocks: Int!
7680
}
7781

0 commit comments

Comments
 (0)