diff --git a/src/schemas/cart.graphql b/src/schemas/cart.graphql index 46b05c4..284cb89 100644 --- a/src/schemas/cart.graphql +++ b/src/schemas/cart.graphql @@ -42,6 +42,9 @@ type Cart 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, @@ -199,6 +202,9 @@ type CartItem 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,