UNPKG

208 BJavaScriptView Raw
1const { GraphQLError } = require('graphql/error')
2const { isUUID } = require('validator')
3
4module.exports = (value) => {
5 if (isUUID(value)) return true
6
7 throw new GraphQLError('Must be in UUID format')
8}