printImplementedInterfaces method
Implementation
String printImplementedInterfaces(
GraphQLObjectType type,
) {
final interfaces = type.interfaces;
return interfaces.isNotEmpty
? ' implements ' +
interfaces.map((i) => printTypeReference(i)).join(' & ')
: '';
}