@apollo/client
Version:
A fully-featured caching GraphQL client.
19 lines (18 loc) • 468 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.toQueryResult = toQueryResult;
/**
* @internal
*
* @deprecated This is an internal API and should not be used directly. This can be removed or changed at any time.
*/
function toQueryResult(value) {
const result = {
data: value.data,
};
if (value.error) {
result.error = value.error;
}
return result;
}
//# sourceMappingURL=toQueryResult.cjs.map