@nestjs/graphql
Version:
Nest - modern, fast, powerful node.js web framework (@graphql)
10 lines • 454 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidNullableOptionError = void 0;
class InvalidNullableOptionError extends Error {
constructor(name, nullable) {
super(`Incorrect nullable option set for ${name}. Do not combine non-list type with nullable "${nullable}".`);
}
}
exports.InvalidNullableOptionError = InvalidNullableOptionError;
//# sourceMappingURL=invalid-nullable-option.error.js.map