Refactor source paths
This commit is contained in:
17
source/queries/projects.graphql
Normal file
17
source/queries/projects.graphql
Normal file
@@ -0,0 +1,17 @@
|
||||
query Projects {
|
||||
user(login: "$login") {
|
||||
projects(last: $limit, states: OPEN, orderBy: {field: UPDATED_AT, direction: DESC}) {
|
||||
totalCount
|
||||
nodes {
|
||||
name
|
||||
updatedAt
|
||||
progress {
|
||||
doneCount
|
||||
inProgressCount
|
||||
todoCount
|
||||
enabled
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user