summaryrefslogtreecommitdiffstats
path: root/backend/src/schema.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'backend/src/schema.graphql')
-rw-r--r--backend/src/schema.graphql2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/src/schema.graphql b/backend/src/schema.graphql
index fdaa04f..07533eb 100644
--- a/backend/src/schema.graphql
+++ b/backend/src/schema.graphql
@@ -6,7 +6,7 @@ type Query {
order(id: ID!): Order!
orders(where: OrderWhereInput, orderBy: OrderOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Order]!
items(where: ItemWhereInput, orderBy: ItemOrderByInput, skip: Int, after: String, before: String, first: Int, last: Int): [Item]!
- itemsConnection(where: ItemWhereInput, orderBy: ItemOrderByInput, first: Int, last: Int): ItemConnection!
+ itemsConnection(where: ItemWhereInput, orderBy: ItemOrderByInput, first: Int, last: Int, skip: Int): ItemConnection!
}
type Mutation {