You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
raqb/src/validators/forbid-remote-fields.js

11 lines
305 B
JavaScript

"use strict";
const containsRemoteFields = require("../ast/contains-remote-fields");
const ValidationError = require("@validatem/error");
module.exports = function forbidRemoteFields(value) {
if (containsRemoteFields(value)) {
throw new ValidationError(`Must not reference any remote fields`);
}
};