1
2
3
4
5
6
7
8
//! Methods and types related to AQL queries.
//!
//! The methods in this module are about tasks related to AQL queries like
//! syntax verification and inspection of execution plans. To actually execute
//! AQL queries use the methods of the `cursor` module.

pub mod methods;
pub mod types;