Skip to content
This repository was archived by the owner on Sep 20, 2023. It is now read-only.

Commit 35388d9

Browse files
committed
fix: update RepositoryLabels GraphQL query name
1 parent 6ef1540 commit 35388d9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: gql/RepositoryLabels.graphql

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
query RepositoryLabels($owner: String!, $repo: String!, $after: String) {
1+
query fetchRepositoryLabels($owner: String!, $repo: String!, $after: String) {
22
repository(owner: $owner, name: $repo) {
33
labels(first:100, after: $after) {
44
nodes {
@@ -9,6 +9,6 @@ query RepositoryLabels($owner: String!, $repo: String!, $after: String) {
99
hasNextPage
1010
endCursor
1111
}
12-
}
12+
}
1313
}
1414
}

0 commit comments

Comments
 (0)