summaryrefslogtreecommitdiffstats
path: root/stepped-solutions/15/datamodel.graphql
blob: 600ec3cc1a4cbbe008610e811c13c808caca0131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
type User {
  id: ID! @unique
  name: String!
  email: String!
}

type Item {
  id: ID! @unique
  title: String!
  description: String!
  image: String
  largeImage: String
  price: Int!
  # createAt: DateTime!
  # updatedAt: DateTime!
  # user: User!
}