Add missing title field for projectv2

This commit is contained in:
Andy Feller 2024-04-29 07:42:53 -04:00
parent 985dee0e05
commit d611ed4bf0

View file

@ -489,7 +489,7 @@ func RepositoryGraphQL(fields []string) string {
case "projects":
q = append(q, "projects(first:100,states:OPEN){nodes{id,name,number,body,resourcePath}}")
case "projectsV2":
q = append(q, "projectsV2(first:100,query:\"is:open\"){nodes{id,number,resourcePath,closed,url}}")
q = append(q, "projectsV2(first:100,query:\"is:open\"){nodes{id,number,title,resourcePath,closed,url}}")
case "watchers":
q = append(q, "watchers{totalCount}")
case "issues":