1.0.1 • Published 3 years ago

nexus-args-validation v1.0.1

Weekly downloads
10
License
MIT
Repository
-
Last release
3 years ago

This plugin integrates yup into Nexus.

Installation

npm install nexus-args-validation

Example

import { join } from 'path'
import { ApolloServer } from 'apollo-server'
import { makeSchema, mutationField, stringArg } from 'nexus'
import { object, string } from 'yup'
import { nexusArgsValidation } from 'nexus-args-validation'

const types = [
  mutationField('validateUrl', {
    type: 'String',
    description: 'Validates the url argument as a valid URL via a regex',
    args: {
      url: stringArg(),
    },
    validation(yup) {
      return yup.object().shape({
        url: yup.url('Your url is not valid!'),
      })
    },
    resolve: (_, { url }) => {
      return `Your url: ${url} is valid!`
    },
  }),
]

const schema = makeSchema({
  types,
  plugins: [nexusArgsValidation()],
  outputs: {
    schema: join(__dirname, 'generated/schema.graphql'),
    typegen: join(__dirname, 'generated/nexus.ts'),
  },
})

new ApolloServer({
  schema,
}).listen({ port: 4000 }, () =>
  console.log(`🚀 Server ready at: http://localhost:4000`),
)