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

@@ -62,7 +62,7 @@ pub async fn get_field(
};
let extractor = MetaExtractor::new(&item);
let root: PileValue<'_> = PileValue::Extractor(Arc::new(extractor));
let root: PileValue<'_> = PileValue::ObjectExtractor(Arc::new(extractor));
let value = match root.query(&path).await {
Ok(Some(v)) => v,