1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! Federation test suite — split by concern into focused modules.
mod federation {
pub mod common;
// @requires directive enforcement (27 tests)
mod requires_data_types;
mod requires_edge_cases;
mod requires_enforcement;
// Mutation operations (48 tests)
mod mutation_cross_graph;
mod mutation_detection;
mod mutation_error;
mod mutation_extended;
mod mutation_local;
mod mutation_response;
// Entity resolution — database integration
mod entity_connection;
mod entity_cross_db;
mod entity_perf;
mod entity_projection;
mod entity_resolution;
mod entity_where_clause;
// Docker Compose integration — health and queries
mod docker_health;
mod docker_queries;
// Docker Compose integration — federation
mod docker_apollo_router;
mod docker_composite_keys;
mod docker_entity_resolution;
mod docker_three_subgraph;
mod docker_two_subgraph;
// Docker Compose integration — mutations
mod docker_mutations;
// Docker Compose integration — performance
mod docker_perf_gateway;
mod docker_perf_subgraph;
}