Skip to content

Instantly share code, notes, and snippets.

@maniish-jaiin
Last active June 7, 2020 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maniish-jaiin/7fa3ab1ebc5a446813d78239a0ddac08 to your computer and use it in GitHub Desktop.
Save maniish-jaiin/7fa3ab1ebc5a446813d78239a0ddac08 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