Version: 0.1.01.0.01.1.01.2.01.3.01.4.01.4.12.0.02.0.12.0.22.0.32.1.02.1.12.2.02.3.03.0.03.1.03.1.14.0.04.1.04.1.14.1.25.0.05.1.05.1.15.2.05.3.05.4.05.4.15.4.25.4.3
const { GraphQLError } = require('graphql/error')
const { isISO8601 } = require('validator')
module.exports = (value) => {
if (isISO8601(value)) return true
throw new GraphQLError('Must be a date in ISO 8601 format')
}