Add ListExtractor

This commit is contained in:
2026-03-10 20:24:56 -07:00
parent 280bbcb83e
commit 48ac93c78e
22 changed files with 386 additions and 93 deletions

View File

@@ -184,7 +184,7 @@ impl Datasets {
return Ok(None);
};
let extractor = MetaExtractor::new(&item);
let root = PileValue::Extractor(Arc::new(extractor));
let root = PileValue::ObjectExtractor(Arc::new(extractor));
let Some(value) = root.query(path).await? else {
return Ok(None);
};