We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 308f4b2 commit 3be77ccCopy full SHA for 3be77cc
graph/src/data_source/subgraph.rs
@@ -358,7 +358,10 @@ impl UnresolvedDataSource {
358
359
let pruning_enabled = match source_manifest.indexer_hints.as_ref() {
360
None => false,
361
- Some(hints) => hints.prune.is_some(),
+ Some(hints) => match hints.prune.as_ref() {
362
+ None => false,
363
+ Some(prune) => !matches!(prune, crate::data::subgraph::Prune::Never),
364
+ },
365
};
366
367
if pruning_enabled {
0 commit comments