Skip to content

Instantly share code, notes, and snippets.

@giovannibenussi
Created September 14, 2017 20:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save giovannibenussi/088ba4a14ea5ad88adb439e64abff5c2 to your computer and use it in GitHub Desktop.
Save giovannibenussi/088ba4a14ea5ad88adb439e64abff5c2 to your computer and use it in GitHub Desktop.
module Validators
class GraphqlValidator
def self.validate_presence(attribute, value)
return if value.present?
raise GraphQL::ExecutionError, “You must provide a value for #{attribute}”
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment