git-touch-android-ios-app/lib/graphql/gh_repo.graphql

102 lines
1.6 KiB
GraphQL
Raw Normal View History

2020-01-07 08:07:57 +01:00
query GhRepo(
2019-12-07 09:12:18 +01:00
$owner: String!
$name: String!
$branchSpecified: Boolean!
$branch: String!
) {
repository(owner: $owner, name: $name) {
owner {
__typename
login
avatarUrl
}
name
description
2020-01-01 13:44:18 +01:00
homepageUrl
2019-12-07 09:12:18 +01:00
isPrivate
isFork
stargazers {
totalCount
}
forks {
totalCount
}
primaryLanguage {
color
name
}
id
diskUsage
hasIssuesEnabled
url
viewerHasStarred
2020-01-20 07:18:45 +01:00
viewerSubscription
2020-01-01 13:59:20 +01:00
projectsUrl
2019-12-07 09:12:18 +01:00
watchers {
totalCount
}
issues(states: OPEN) {
totalCount
}
pullRequests(states: OPEN) {
totalCount
}
projects {
totalCount
}
releases {
totalCount
}
languages(first: 10, orderBy: { field: SIZE, direction: DESC }) {
totalSize
edges {
size
node {
name
color
}
}
}
defaultBranchRef @skip(if: $branchSpecified) {
name
target {
2019-12-07 09:22:05 +01:00
__typename
2019-12-07 09:12:18 +01:00
... on Commit {
history {
totalCount
}
}
}
}
ref(qualifiedName: $branch) @include(if: $branchSpecified) {
name
target {
2019-12-07 09:22:05 +01:00
__typename
2019-12-07 09:12:18 +01:00
... on Commit {
history {
totalCount
}
}
}
}
refs(first: 100, refPrefix: "refs/heads/") {
totalCount
nodes {
name
}
}
licenseInfo {
name
spdxId
}
2020-01-01 13:44:18 +01:00
repositoryTopics(first: 10) {
2019-12-07 09:12:18 +01:00
nodes {
url
topic {
name
}
}
}
}
}