relay-runtime 0.0.0-main-88093de0 → 0.0.0-main-f1435c3e
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/index.js +1 -1
- package/lib/store/RelayReader.js +2 -3
- package/package.json +1 -1
- package/relay-runtime.js +2 -2
- package/relay-runtime.min.js +2 -2
- package/store/RelayReader.js.flow +3 -3
package/index.js
CHANGED
package/lib/store/RelayReader.js
CHANGED
|
@@ -466,9 +466,7 @@ var RelayReader = /*#__PURE__*/function () {
|
|
|
466
466
|
throw new Error('Relay Resolver fields are not yet supported.');
|
|
467
467
|
}
|
|
468
468
|
|
|
469
|
-
this._readResolverField(selection.field, record, data);
|
|
470
|
-
|
|
471
|
-
break;
|
|
469
|
+
return this._readResolverField(selection.field, record, data);
|
|
472
470
|
|
|
473
471
|
default:
|
|
474
472
|
selection.field.kind;
|
|
@@ -550,6 +548,7 @@ var RelayReader = /*#__PURE__*/function () {
|
|
|
550
548
|
|
|
551
549
|
var applicationName = (_field$alias = field.alias) !== null && _field$alias !== void 0 ? _field$alias : field.name;
|
|
552
550
|
data[applicationName] = result;
|
|
551
|
+
return result;
|
|
553
552
|
};
|
|
554
553
|
|
|
555
554
|
_proto._readClientEdge = function _readClientEdge(field, record, data) {
|