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

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

type Query {
  items: [Item]!
}