Skip to content
This repository has been archived by the owner on Sep 21, 2022. It is now read-only.

Commit

Permalink
Merge pull request #13 from trojanh/trunk
Browse files Browse the repository at this point in the history
Add offset for OrderFulfillmentGroup items, ordersByAccountId and OrderItem productTags
  • Loading branch information
Maria Paktiti authored Jun 23, 2020
2 parents 505fac2 + 2b63c7e commit b3cea79
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/schemas/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -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,

Expand Down Expand Up @@ -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,

Expand Down Expand Up @@ -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,

Expand Down

0 comments on commit b3cea79

Please sign in to comment.