blob: b35f32c17213db50194aa6e5d11432bfe8165b13 [file]
//! High-level builders for writing GraphAr data.
/// Vertex builders for writing vertex chunks.
pub mod vertex;
mod property_value;
/// A value that can be written into a GraphAr property.
pub use property_value::PropertyValue;
pub use vertex::{Vertex, VerticesBuilder};