@ardatan/relay-compiler
Version:
Fork of `relay-compiler`
50 lines (41 loc) • 1.17 kB
JavaScript
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*
* @format
*/
// flowlint ambiguous-object-type:error
;
var IRTransformer = require('../core/IRTransformer');
function skipClientExtensionTransform(context) {
return IRTransformer.transform(context, {
Fragment: visitFragment,
FragmentSpread: vistFragmentSpread,
ClientExtension: visitClientExtension,
});
}
function visitFragment(node) {
// $FlowFixMe[incompatible-use]
var context = this.getContext();
if (context.getSchema().isServerType(node.type)) {
// $FlowFixMe[incompatible-use]
return this.traverse(node);
}
return null;
}
function vistFragmentSpread(node) {
// $FlowFixMe[incompatible-use]
var context = this.getContext();
var fragment = context.getFragment(node.name, node.loc);
var isServer = context.getSchema().isServerType(fragment.type);
return isServer ? node : null;
}
function visitClientExtension(node, state) {
return null;
}
module.exports = {
transform: skipClientExtensionTransform,
};