summaryrefslogtreecommitdiffstats
path: root/backend/src
diff options
context:
space:
mode:
authorWes Bos <wesbos@gmail.com>2018-05-23 11:47:39 -0400
committerWes Bos <wesbos@gmail.com>2018-05-23 11:47:39 -0400
commitee068a81a5a8e71663c78135e5e865621dba53cb (patch)
tree25ba77cd17560fb1499fb8abc400c367a9a09055 /backend/src
parent3eec10369e739fff1c395ca895c468fc669d2826 (diff)
add skip back in
Diffstat (limited to 'backend/src')
-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 {