We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c43198d commit c4f178cCopy full SHA for c4f178c
lib/graphql/language/printer.rb
@@ -154,8 +154,8 @@ def print_scalar_type_definition(scalar_type)
154
def print_object_type_definition(object_type)
155
out = print_description(object_type)
156
out << "type #{object_type.name}"
157
- out << print_directives(object_type.directives)
158
out << " implements " << object_type.interfaces.map(&:name).join(", ") unless object_type.interfaces.empty?
+ out << print_directives(object_type.directives)
159
out << print_field_definitions(object_type.fields)
160
end
161
0 commit comments