From 2b63c7ea1649f069e45051702d3c52d08b978516 Mon Sep 17 00:00:00 2001 From: trojanh Date: Wed, 10 Jun 2020 11:10:02 +0530 Subject: [PATCH] fix: Add offset for OrderFulfllmentGroup items, ordersByAccountId and OrderItem productTags Signed-off-by: trojanh --- src/schemas/schema.graphql | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/schemas/schema.graphql b/src/schemas/schema.graphql index 90d4e16..7fad8de 100644 --- a/src/schemas/schema.graphql +++ b/src/schemas/schema.graphql @@ -64,6 +64,9 @@ extend type Query { "Return at most this many results. This parameter may be used with the `before` parameter." last: ConnectionLimitInt, + "Return only results that come after the Nth result. This parameter may be used with the `first` parameter." + offset: Int, + "Return results sorted in this order" sortOrder: SortOrder = desc, @@ -411,6 +414,9 @@ type OrderItem implements Node { "Return at most this many results. This parameter may be used with the `before` parameter." last: ConnectionLimitInt, + "Return only results that come after the Nth result. This parameter may be used with the `first` parameter." + offset: Int, + "Return results sorted in this order" sortOrder: SortOrder = asc, @@ -488,6 +494,9 @@ type OrderFulfillmentGroup implements Node { "Return at most this many results. This parameter may be used with the `before` parameter." last: ConnectionLimitInt, + "Return only results that come after the Nth result. This parameter may be used with the `first` parameter." + offset: Int, + "Return results sorted in this order" sortOrder: SortOrder = desc,