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 5c2811c commit 67b6307Copy full SHA for 67b6307
server/index-node/src/resolver.rs
@@ -139,7 +139,7 @@ impl<S: Store> IndexNodeResolver<S> {
139
.collect(),
140
_ => unreachable!(),
141
})
142
- .unwrap();
+ .unwrap_or_else(Vec::new);
143
144
let infos = self
145
.store
server/index-node/src/schema.graphql
@@ -21,7 +21,7 @@ type Query {
21
indexingStatusesForSubgraphName(
22
subgraphName: String!
23
): [SubgraphIndexingStatus!]!
24
- indexingStatuses(subgraphs: [String!]!): [SubgraphIndexingStatus!]!
+ indexingStatuses(subgraphs: [String!]): [SubgraphIndexingStatus!]!
25
proofOfIndexing(
26
subgraph: String!
27
blockNumber: Int!
0 commit comments