```type Repo { id: ID! @unique repo_id: Int! @...
# random
d
Copy code
type 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!
}