Skip to content

Instantly share code, notes, and snippets.

@Yusfuu
Created June 1, 2022 13:45
Show Gist options
  • Save Yusfuu/db0c4823b859ff1e0b231a9591ef7085 to your computer and use it in GitHub Desktop.
Save Yusfuu/db0c4823b859ff1e0b231a9591ef7085 to your computer and use it in GitHub Desktop.
interface Profile {
id: ID!
name: String!
}
type User implements Profile {
id: ID!
name: String!
age: Int!
}
type Company implements Profile {
id: ID!
name: String!
address: String!
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment