Merge pull request #11 from github/graphql-ruby-1-5-6

Use valid_isolated_input? in place of valid_input?
This commit is contained in:
Brooks Swinnerton 2017-04-10 15:26:08 -04:00 коммит произвёл GitHub
Родитель ec31adb640 26f9dc9b80
Коммит f98d82ad21
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -244,7 +244,11 @@ 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)
type.valid_isolated_input?(input)
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)