relay-runtime 0.0.0-main-945b2878 → 0.0.0-main-18b0ca99

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.
@@ -185,6 +185,7 @@ function getLinkedRecordID(record: Record, storageKey: string): ?DataID {
185
185
  'getLinkedRecords() instead of getLinkedRecord()?'
186
186
  : '',
187
187
  );
188
+ // $FlowFixMe[incompatible-return]
188
189
  return link[REF_KEY];
189
190
  }
190
191
 
@@ -608,6 +608,7 @@ class RelayReader {
608
608
  }
609
609
  if (cachedSnapshot.missingLiveResolverFields != null) {
610
610
  this._isMissingData =
611
+ this._isMissingData ||
611
612
  cachedSnapshot.missingLiveResolverFields.length > 0;
612
613
 
613
614
  for (const missingResolverField of cachedSnapshot.missingLiveResolverFields) {
@@ -680,6 +681,7 @@ class RelayReader {
680
681
  // Client objects might use ids that are not gobally unique and instead are just
681
682
  // local within their type. ResolverCache will derive a namespaced ID for us.
682
683
  if (field.linkedField.plural) {
684
+ // $FlowFixMe[prop-missing]
683
685
  destinationDataID = destinationDataID.map(id =>
684
686
  this._resolverCache.ensureClientRecord(id, field.concreteType),
685
687
  );