We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ac152c commit 56bf046Copy full SHA for 56bf046
graph/src/data/subgraph/mod.rs
@@ -700,10 +700,10 @@ impl<C: Blockchain> UnvalidatedSubgraphManifest<C> {
700
.filter(|ds| matches!(ds, DataSource::Subgraph(_)))
701
.count();
702
703
- if subgraph_ds_count > 1 {
+ if subgraph_ds_count > 5 {
704
errors.push(SubgraphManifestValidationError::DataSourceValidation(
705
"subgraph".to_string(),
706
- anyhow!("Cannot have more than one subgraph datasource"),
+ anyhow!("Cannot have more than 5 subgraph datasources"),
707
));
708
}
709
0 commit comments