stripping schema nulls from stems

This commit is contained in:
2026-03-15 00:13:33 -04:00
parent 290464adc1
commit d4347072f2
4 changed files with 998 additions and 51 deletions

View File

@ -8,10 +8,5 @@ pub struct Stem {
#[serde(skip_serializing_if = "Option::is_none")]
pub relation: Option<String>,
// The actual database schema node mapping for
// O(1) jump table execution for queryer.
//
// Automatically skipped from `jspg_stems()` JSON payload output.
#[serde(skip)]
pub schema: Arc<Schema>,
}