Skip to content

Commit 8349bce

Browse files
octokitbotgr2m
authored andcommittedOct 10, 2019
feat: Repository#mentionableUsers(query) (#223)
1 parent 608368a commit 8349bce

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
 

‎schema.graphql

+5
Original file line numberDiff line numberDiff line change
@@ -26292,6 +26292,11 @@ type Repository implements Node & ProjectOwner & RegistryPackageOwner & Registry
2629226292
Returns the last _n_ elements from the list.
2629326293
"""
2629426294
last: Int
26295+
26296+
"""
26297+
Filters users with query on user name and login
26298+
"""
26299+
query: String
2629526300
): UserConnection!
2629626301

2629726302
"""

‎schema.json

+10
Original file line numberDiff line numberDiff line change
@@ -7233,6 +7233,16 @@
72337233
"name": "mentionableUsers",
72347234
"description": "A list of Users that can be mentioned in the context of the repository.",
72357235
"args": [
7236+
{
7237+
"name": "query",
7238+
"description": "Filters users with query on user name and login",
7239+
"type": {
7240+
"kind": "SCALAR",
7241+
"name": "String",
7242+
"ofType": null
7243+
},
7244+
"defaultValue": null
7245+
},
72367246
{
72377247
"name": "after",
72387248
"description": "Returns the elements in the list that come after the specified cursor.",

0 commit comments

Comments
 (0)