No commit activity in last 3 years
No release in over 3 years
Validate graphql-ruby arguments easily with dry-validation
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.15
>= 0
~> 10.0
~> 3.0

Runtime

~> 1.7.3
 Project Readme

Gem Version Build Status

Graphql::Validation

A simple gem to help with common validating GraphQL input objects.

Installation

Add this line to your application's Gemfile:

gem 'graphql-validation'

And then execute:

$ bundle

Usage

ProductValidator = Dry::Validation.Form do
  required(:amount).filled(:int?, gteq?: 0)
end

CreateProductMutation = GraphQL::Relay::Mutation.define do
  input_field :product, !ProductInputType, validate_with: ProductValidator
  return_field :id, types.ID
  # ...
end

MutationType = GraphQL::ObjectType.define do
  name 'Mutation'
  description 'The mutation root of this schema'
  field :createProduct, field: CreateProductMutation.field
end

License

The gem is available as open source under the terms of the MIT License.