relay-runtime 0.0.0-main-9cd3331e → 0.0.0-main-ee5da1e6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/util/ReaderNode.js.flow
CHANGED
|
@@ -224,6 +224,10 @@ export type ReaderRelayResolver = {|
|
|
|
224
224
|
+alias: ?string,
|
|
225
225
|
+name: string,
|
|
226
226
|
+fragment: ReaderFragmentSpread,
|
|
227
|
+
// This field is optional for now as we rollout the compiler change
|
|
228
|
+
// Once the new version of the compiler has been rolled out, this
|
|
229
|
+
// will become: `path: string`.
|
|
230
|
+
+path?: string,
|
|
227
231
|
+resolverModule: (rootKey: {
|
|
228
232
|
+$data?: any, // flowlint-line unclear-type:off
|
|
229
233
|
+$fragmentSpreads: any, // flowlint-line unclear-type:off
|
|
@@ -46,7 +46,7 @@ const RelayFeatureFlags: FeatureFlags = {
|
|
|
46
46
|
ENABLE_NOTIFY_SUBSCRIPTION: false,
|
|
47
47
|
BATCH_ASYNC_MODULE_UPDATES_FN: null,
|
|
48
48
|
ENABLE_CONTAINERS_SUBSCRIBE_ON_COMMIT: false,
|
|
49
|
-
ENABLE_QUERY_RENDERER_OFFSCREEN_SUPPORT:
|
|
49
|
+
ENABLE_QUERY_RENDERER_OFFSCREEN_SUPPORT: true,
|
|
50
50
|
MAX_DATA_ID_LENGTH: null,
|
|
51
51
|
STRING_INTERN_LEVEL: 0,
|
|
52
52
|
USE_REACT_CACHE: false,
|