Skip to content

Instantly share code, notes, and snippets.

View Yusfuu's full-sized avatar
👋
🌍

Youssef HAJJARI Yusfuu

👋
🌍
View GitHub Profile
type Character {
id: ID!
name: String!
appearsIn: [Episode!]!
}
enum Episode {
NEWHOPE
EMPIRE
JEDI
interface Profile {
id: ID!
name: String!
}
type User implements Profile {
id: ID!
name: String!
age: Int!
}