mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
39 lines
959 B
TypeScript
39 lines
959 B
TypeScript
// Loaded from https://deno.land/x/graphql_deno@v15.0.0/lib/validation/rules/UniqueInputFieldNamesRule.js
|
|
|
|
|
|
import { GraphQLError } from '../../error/GraphQLError.js';
|
|
|
|
/**
|
|
* Unique input field names
|
|
*
|
|
* A GraphQL input object value is only valid if all supplied fields are
|
|
* uniquely named.
|
|
*/
|
|
export function UniqueInputFieldNamesRule(context) {
|
|
const knownNameStack = [];
|
|
let knownNames = Object.create(null);
|
|
return {
|
|
ObjectValue: {
|
|
enter() {
|
|
knownNameStack.push(knownNames);
|
|
knownNames = Object.create(null);
|
|
},
|
|
|
|
leave() {
|
|
knownNames = knownNameStack.pop();
|
|
}
|
|
|
|
},
|
|
|
|
ObjectField(node) {
|
|
const fieldName = node.name.value;
|
|
|
|
if (knownNames[fieldName]) {
|
|
context.reportError(new GraphQLError(`There can be only one input field named "${fieldName}".`, [knownNames[fieldName], node.name]));
|
|
} else {
|
|
knownNames[fieldName] = node.name;
|
|
}
|
|
}
|
|
|
|
};
|
|
} |