Multiple inheritance possible? GraphQL/SlashGraphQL


Tried this in the SlashQL schema, didn’t work.

The way to do that is to use & instead of ,:

type Desu implements Status & CreationRecord {
 x: String
}
3 Likes