Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
58 lines
1.4 KiB
Plaintext
58 lines
1.4 KiB
Plaintext
'use strict';
|
|
|
|
Object.defineProperty(exports, '__esModule', {
|
|
value: true,
|
|
});
|
|
exports.UniqueTypeNamesRule = UniqueTypeNamesRule;
|
|
|
|
var _GraphQLError = require('../../error/GraphQLError.js');
|
|
|
|
/**
|
|
* Unique type names
|
|
*
|
|
* A GraphQL document is only valid if all defined types have unique names.
|
|
*/
|
|
function UniqueTypeNamesRule(context) {
|
|
const knownTypeNames = Object.create(null);
|
|
const schema = context.getSchema();
|
|
return {
|
|
ScalarTypeDefinition: checkTypeName,
|
|
ObjectTypeDefinition: checkTypeName,
|
|
InterfaceTypeDefinition: checkTypeName,
|
|
UnionTypeDefinition: checkTypeName,
|
|
EnumTypeDefinition: checkTypeName,
|
|
InputObjectTypeDefinition: checkTypeName,
|
|
};
|
|
|
|
function checkTypeName(node) {
|
|
const typeName = node.name.value;
|
|
|
|
if (schema !== null && schema !== void 0 && schema.getType(typeName)) {
|
|
context.reportError(
|
|
new _GraphQLError.GraphQLError(
|
|
`Type "${typeName}" already exists in the schema. It cannot also be defined in this type definition.`,
|
|
{
|
|
nodes: node.name,
|
|
},
|
|
),
|
|
);
|
|
return;
|
|
}
|
|
|
|
if (knownTypeNames[typeName]) {
|
|
context.reportError(
|
|
new _GraphQLError.GraphQLError(
|
|
`There can be only one type named "${typeName}".`,
|
|
{
|
|
nodes: [knownTypeNames[typeName], node.name],
|
|
},
|
|
),
|
|
);
|
|
} else {
|
|
knownTypeNames[typeName] = node.name;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|