@ardatan/relay-compiler
Version:
Fork of `relay-compiler`
45 lines (38 loc) • 1.09 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');
var _require = require('../core/CompilerError'),
createUserError = _require.createUserError;
function visitField(field) {
if (field.alias === 'id' && field.name !== 'id') {
throw createUserError(
'Relay does not allow aliasing fields to `id`. ' +
'This name is reserved for the globally unique `id` field on ' +
'`Node`.',
[field.loc],
);
} // $FlowFixMe[incompatible-use]
return this.traverse(field);
}
/**
* This is not an actual transform (but more a validation)
* Relay does not allow aliasing fields to `id`.
*/
function disallowIdAsAlias(context) {
return IRTransformer.transform(context, {
ScalarField: visitField,
LinkedField: visitField,
});
}
module.exports = {
transform: disallowIdAsAlias,
};