Skip to content

Commit

Permalink
Also swap the defaults inside apollo-federation
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed Nov 8, 2024
1 parent bf90de4 commit 236fba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apollo-federation/src/query_plan/query_planner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ pub struct QueryPlannerConfig {
impl Default for QueryPlannerConfig {
fn default() -> Self {
Self {
reuse_query_fragments: true,
generate_query_fragments: false,
reuse_query_fragments: false,
generate_query_fragments: true,
subgraph_graphql_validation: false,
incremental_delivery: Default::default(),
debug: Default::default(),
Expand Down

0 comments on commit 236fba6

Please sign in to comment.