kotoba 0.1.3

GP2-based Graph Rewriting Language - ISO GQL-compliant queries, MVCC+Merkle persistence, and distributed execution
Documentation
//! # Generated from Jsonnet DSL
//!
//! This file was generated automatically from types_simple.json
//! Do not edit manually.

use serde::{Deserialize, Serialize};
use std::collections::HashMap;
use uuid::Uuid;

/// 頂点ID
pub type VertexId = Uuid;

/// エッジID
pub type EdgeId = Uuid;

/// プロパティ値
#[derive(Debug, Clone)]
pub enum Value {
    Null,
    String(String),
}