Skip to content

Commit

Permalink
fix: resolves #5550 - make graphql value nullable (#5551)
Browse files Browse the repository at this point in the history
  • Loading branch information
dwerner authored Aug 9, 2024
1 parent 2d751ca commit e2e6925
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion server/index-node/src/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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!
}

Expand Down

0 comments on commit e2e6925

Please sign in to comment.