mirror of
https://github.com/zhigang1992/GitHawk.git
synced 2026-01-12 22:47:34 +08:00
11 lines
190 B
GraphQL
11 lines
190 B
GraphQL
query RepositoryLabels($owner: String!, $repo: String!) {
|
|
repository(owner: $owner, name: $repo) {
|
|
labels(first:100) {
|
|
nodes {
|
|
name
|
|
color
|
|
}
|
|
}
|
|
}
|
|
}
|