UNPKG

graphql-constraint-directive

Version:
9 lines (6 loc) 208 B
const { GraphQLError } = require('graphql/error') const { isIP } = require('validator') module.exports = (value) => { if (isIP(value, 4)) return true throw new GraphQLError('Must be in IP v4 format') }