File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ type Query {
125
125
126
126
Typically the `endpoint` argument of `@rest` would have query
127
127
parameters that set the pagination arguments expected by the
128
- REST API from the field arguments `first` ( ) and `after` (offset defaults to 0 if empty),
128
+ REST API from the field arguments `first` and `after` (offset defaults to 0 if empty),
129
129
for example: `?limt=$first&offset=$after`.
130
130
"""
131
131
customersOffset (first : Int ! , after : String = " " ): CustomerConnection
@@ -157,7 +157,7 @@ type Query {
157
157
// Since this is OFFSET pagination
158
158
// " after " is decoded by StepZen from the opaque string value
159
159
// and passed into @rest as a integer offset value,
160
- // with the first page being 1 .
160
+ // with the offset of the first record being zero .
161
161
const limit = get('first');
162
162
const offset = get('after');
163
163
You can’t perform that action at this time.
0 commit comments