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

Commit

Permalink
fix: update RepositoryLabels GraphQL query name
Browse files Browse the repository at this point in the history
  • Loading branch information
qkdreyer committed Mar 6, 2020
1 parent 6ef1540 commit 35388d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gql/RepositoryLabels.graphql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
query RepositoryLabels($owner: String!, $repo: String!, $after: String) {
query fetchRepositoryLabels($owner: String!, $repo: String!, $after: String) {
repository(owner: $owner, name: $repo) {
labels(first:100, after: $after) {
nodes {
Expand All @@ -9,6 +9,6 @@ query RepositoryLabels($owner: String!, $repo: String!, $after: String) {
hasNextPage
endCursor
}
}
}
}
}

0 comments on commit 35388d9

Please sign in to comment.