From e2e69250062f7cf5c8c38d1f6b4dcf9398140f72 Mon Sep 17 00:00:00 2001 From: "Daniel N. Werner" <1497784+dwerner@users.noreply.github.com> Date: Fri, 9 Aug 2024 11:20:50 -0700 Subject: [PATCH] fix: resolves #5550 - make graphql value nullable (#5551) --- server/index-node/src/schema.graphql | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/server/index-node/src/schema.graphql b/server/index-node/src/schema.graphql index 4d7e0677934..26b5f61623f 100644 --- a/server/index-node/src/schema.graphql +++ b/server/index-node/src/schema.graphql @@ -70,8 +70,12 @@ type SubgraphIndexingStatus { nonFatalErrors: [SubgraphError!]! chains: [ChainIndexingStatus!]! entityCount: BigInt! + + "null if deployment is not assigned to an indexing node" node: String - paused: Boolean! + "null if deployment is not assigned to an indexing node" + paused: Boolean + historyBlocks: Int! }