class GraphQL::Schema::Printer::TypeKindPrinters::UnionPrinter
def self.print(type)
def self.print(type) "union #{type.name} = #{type.possible_types.map(&:to_s).join(" | ")}" end
def self.print(type) "union #{type.name} = #{type.possible_types.map(&:to_s).join(" | ")}" end