Class: GraphQL::Schema::Printer::TypeKindPrinters::ObjectPrinter

Inherits:
Object
  • Object
show all
Extended by:
FieldPrinter
Defined in:
lib/graphql/schema/printer.rb

Class Method Summary collapse

Methods included from FieldPrinter

print_fields

Methods included from ArgsPrinter

#print_args, #print_input_value, #print_value

Methods included from DeprecatedPrinter

#print_deprecated

Class Method Details



157
158
159
160
161
162
163
164
# File 'lib/graphql/schema/printer.rb', line 157

def self.print(type)
  if type.interfaces.any?
    implementations = " implements #{type.interfaces.map(&:to_s).join(", ")}"
  else
    implementations = nil
  end
  "type #{type.name}#{implementations} {\n#{print_fields(type)}\n}"
end