fraiseql-core 2.2.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
14
//! Property-based tests for FraiseQL core.
//!
//! Uses proptest to verify invariants that hold across all inputs: parser safety,
//! schema consistency, SQL generation correctness, and error handling behaviour.

mod property {
    mod property_cache_invalidation;
    mod property_error_handling;
    mod property_error_sanitization;
    mod property_graphql;
    mod property_schema;
    mod property_sql_generation;
    mod property_tests;
}