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