schema {
  query: Query
}

type Query {
  projects: [Project]
}

type Project {
  id: ID!
  description: String!
  title: String!
  url: String!
}