UNPKG

@ardatan/relay-compiler

Version:

A compiler tool for building GraphQL-driven applications.

41 lines (33 loc) 1.05 kB
/** * 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 'use strict'; 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 };