summaryrefslogtreecommitdiffstats
path: root/stepped-solutions/20/backend/src/schema.graphql
blob: bdc131f8647f43688386a8dafc62d4beee0236c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
# import * from './generated/prisma.graphql'

type Mutation {
  createItem(title: String, description: String, price: Int, image: String, largeImage: String): Item!
  updateItem(id: ID!, title: String, description: String, price: Int): Item!
}

type Query {
  items: [Item]!
  item(where: ItemWhereUniqueInput!): Item
}