The great refactor (#82)
This commit is contained in:
32
source/plugins/stars/queries/stars.graphql
Normal file
32
source/plugins/stars/queries/stars.graphql
Normal file
@@ -0,0 +1,32 @@
|
||||
query StarsDefault {
|
||||
user(login: "$login") {
|
||||
starredRepositories(first: $limit, orderBy: {field: STARRED_AT, direction: DESC}) {
|
||||
edges {
|
||||
starredAt
|
||||
node {
|
||||
description
|
||||
forkCount
|
||||
isFork
|
||||
issues {
|
||||
totalCount
|
||||
}
|
||||
nameWithOwner
|
||||
openGraphImageUrl
|
||||
licenseInfo {
|
||||
nickname
|
||||
spdxId
|
||||
name
|
||||
}
|
||||
pullRequests {
|
||||
totalCount
|
||||
}
|
||||
stargazerCount
|
||||
primaryLanguage {
|
||||
color
|
||||
name
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user