Graphql dsl schema with multiple implements

Hi
I am looking into using Postman for our graphql endpoint, but have some problems with the schema/API.

It seems that multiple implements breaks it.
example:

interface Hair{}
interface Clothes{}

Works:
type Person implements Hair{}
Does not work:
type Person implements Hair, Clothes{}

I am getting a “Syntax error: Unexpected name ‘Clothes’”

I am not sure if it is my schema that is wrong, if multiple implements are not supported or if I am getting it overall wrong :slight_smile: