We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3be77cc commit 95f2a98Copy full SHA for 95f2a98
graph/src/data_source/subgraph.rs
@@ -356,20 +356,6 @@ impl UnresolvedDataSource {
356
return Err(anyhow!("Nested subgraph data sources are not supported."));
357
}
358
359
- let pruning_enabled = match source_manifest.indexer_hints.as_ref() {
360
- None => false,
361
- Some(hints) => match hints.prune.as_ref() {
362
363
- Some(prune) => !matches!(prune, crate::data::subgraph::Prune::Never),
364
- },
365
- };
366
-
367
- if pruning_enabled {
368
- return Err(anyhow!(
369
- "Pruning is enabled for source subgraph, which is not supported"
370
- ));
371
- }
372
373
let mapping_entities: Vec<String> = self
374
.mapping
375
.handlers
0 commit comments