As per the deprecation notice noted in https://git.io/vS6hn.
This commit is contained in:
Brooks Swinnerton 2017-04-10 13:45:22 -04:00
Родитель ec31adb640
Коммит 1da76ca09c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 01CE2FC2728024DA
1 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -244,7 +244,12 @@ module GraphQL::Relay::Walker
12.times.map { (SecureRandom.random_number(26) + 97).chr }.join
end
if GraphQL::VERSION >= "1.4.0"
if GraphQL::VERSION >= "1.5.6"
def valid_input?(type, input)
allow_all = GraphQL::Schema::Warden.new(->(_) { false }, schema: schema, context: nil)
type.valid_isolated_input?(input, allow_all)
end
elsif GraphQL::VERSION >= "1.4.0"
def valid_input?(type, input)
allow_all = GraphQL::Schema::Warden.new(->(_) { false }, schema: schema, context: nil)
type.valid_input?(input, allow_all)