mirror of
https://github.com/pd4d10/git-touch.git
synced 2026-04-27 18:11:54 -05:00
42 lines
460 B
GraphQL
42 lines
460 B
GraphQL
fragment PageInfoParts on PageInfo {
|
|
hasNextPage
|
|
endCursor
|
|
}
|
|
|
|
fragment RepoParts on Repository {
|
|
owner {
|
|
login
|
|
avatarUrl
|
|
}
|
|
name
|
|
description
|
|
isPrivate
|
|
isFork
|
|
stargazers {
|
|
totalCount
|
|
}
|
|
forks {
|
|
totalCount
|
|
}
|
|
primaryLanguage {
|
|
color
|
|
name
|
|
}
|
|
}
|
|
|
|
fragment UserParts on User {
|
|
login
|
|
name
|
|
avatarUrl
|
|
location
|
|
createdAt
|
|
}
|
|
|
|
fragment OrgParts on Organization {
|
|
login
|
|
name
|
|
avatarUrl
|
|
location
|
|
createdAt
|
|
}
|