fraiseql-core 2.12.0

Core execution engine for FraiseQL v2 - Compiled GraphQL over SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Focused sub-executors for each query family.
//!
//! Each runner holds an `Arc<ExecutorContext<A>>` and is responsible for
//! one class of database operation. Runners do not call each other directly —
//! all cross-runner coordination goes through [`Executor`].

pub(super) mod aggregate;
pub(super) mod mutation;
pub(super) mod query;
pub(super) mod query_params;
pub(super) mod query_projection;
pub(super) mod query_regular;
pub(super) mod query_relay;