selene-db-core 1.3.0

Foundation types for the selene-db ISO/IEC 39075:2024 GQL property graph engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Reserved label prefixes for engine-internal graph metadata.
//!
//! Canonical home: this prefix was consolidated into `selene-core` during the
//! procedure-pack teardown. The native built-in procedures and any future
//! reserved-label policy read this constant from `selene-core` so the prefix has
//! a single source of truth.

/// Node label prefix reserved for selene-internal graph metadata.
///
/// Labels beginning with this prefix are reserved for engine-owned bookkeeping
/// and must not be assigned by user mutations. Defined here (rather than in a
/// downstream crate) so the reservation is visible to every consumer.
pub const RESERVED_LABEL_PREFIX: &str = "selene_";