fraiseql-server 2.2.0

HTTP server for FraiseQL v2 GraphQL engine
Documentation
1
2
3
4
5
6
7
8
9
10
//! Property-based tests for FraiseQL server.
//!
//! Uses proptest to verify invariants across all inputs: auth token parsing,
//! query complexity scoring, and rate-limit accounting.

mod property {
    mod property_auth_parsing;
    mod property_query_complexity;
    mod property_rate_limiting;
}