Dan Fein
01/18/2019, 1:40 AMtype Repo {
id: ID! @unique
repo_id: Int! @unique
name: String!
license: String
contributors: Int
user: GitHub @relation(name: "GitHubLink")
}
type GitHub {
id: ID! @unique
handle: String
stars: Int
repo: [Repo] @relation(name: "GitHubLink")
contributions: Int
profile_picture: String
active: Int!
}