Skip to content

Commit 9ceec34

Browse files
committed
Add missing args for friendList in alpha2 schema
1 parent c6d4e9f commit 9ceec34

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/testing/internal/schemas/friendList.graphql17Alpha2.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import {
22
GraphQLID,
3+
GraphQLInt,
34
GraphQLList,
45
GraphQLNonNull,
56
GraphQLObjectType,
@@ -26,6 +27,11 @@ const query = new GraphQLObjectType({
2627
},
2728
friendList: {
2829
type: new GraphQLList(friendType),
30+
args: {
31+
offset: {
32+
type: GraphQLInt,
33+
},
34+
},
2935
},
3036
nonNullFriendList: {
3137
type: new GraphQLList(new GraphQLNonNull(friendType)),

0 commit comments

Comments
 (0)