This commit is contained in:
Robert Mosolgo 2018-03-15 10:54:58 -04:00
Родитель eabf5a27bc
Коммит f0d9f75f42
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -48,6 +48,8 @@ module GraphQL
case schema
when GraphQL::Schema
schema
when GraphQL::Query::Result
load_schema(schema.to_h)
when Hash
GraphQL::Schema::Loader.load(schema)
when String
@ -73,7 +75,7 @@ module GraphQL
operation_name: "IntrospectionQuery",
variables: {},
context: {}
)
).to_h
if io
io = File.open(io, "w") if io.is_a?(String)