File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
packages/relay-runtime/util Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,10 @@ export type FeatureFlags = {
8080 //
8181 // See https://github.com/facebook/relay/issues/4882
8282 CHECK_ALL_FRAGMENTS_FOR_MISSING_CLIENT_EDGES : boolean ,
83+
84+ // Killswitch in case the fix in https://github.com/facebook/relay/pull/5059
85+ // causes issues.
86+ DISABLE_RESOLVER_ROOT_FRAGMENT_NORMALIZATION_BUG_FIX : boolean ,
8387} ;
8488
8589const RelayFeatureFlags : FeatureFlags = {
@@ -109,6 +113,7 @@ const RelayFeatureFlags: FeatureFlags = {
109113 ENABLE_TYPENAME_PREFIXED_DATA_ID : false ,
110114 ENABLE_UI_CONTEXT_ON_RELAY_LOGGER : false ,
111115 CHECK_ALL_FRAGMENTS_FOR_MISSING_CLIENT_EDGES : false ,
116+ DISABLE_RESOLVER_ROOT_FRAGMENT_NORMALIZATION_BUG_FIX : false ,
112117} ;
113118
114119module . exports = RelayFeatureFlags ;
You can’t perform that action at this time.
0 commit comments