Skip to main content

graphos_adapters/query/
mod.rs

1//! Query language parsers.
2//!
3//! This module provides parsers for different query languages:
4//!
5//! - [`gql`] - GQL parser (ISO/IEC 39075:2024)
6//! - [`cypher`] - Cypher parser (openCypher 9.0, feature-gated)
7//! - [`sparql`] - SPARQL parser (W3C SPARQL 1.1, feature-gated)
8//! - [`gremlin`] - Gremlin parser (Apache TinkerPop, feature-gated)
9//! - [`graphql`] - GraphQL parser (spec-compliant, feature-gated)
10
11#[cfg(feature = "gql")]
12pub mod gql;
13
14#[cfg(feature = "cypher")]
15pub mod cypher;
16
17#[cfg(feature = "sparql")]
18pub mod sparql;
19
20#[cfg(feature = "gremlin")]
21pub mod gremlin;
22
23#[cfg(feature = "graphql")]
24pub mod graphql;