@@ -16,7 +16,7 @@ const GRAPHQL_UPDATE: &str = "query($ids: [ID!]!) {
16
16
projects(ids: $ids) {
17
17
nodes {
18
18
id
19
- nameWithNamespace
19
+ fullPath
20
20
lastActivityAt
21
21
description
22
22
starCount
@@ -29,7 +29,7 @@ const GRAPHQL_UPDATE: &str = "query($ids: [ID!]!) {
29
29
const GRAPHQL_SINGLE : & str = "query($fullPath: ID!) {
30
30
project(fullPath: $fullPath) {
31
31
id
32
- nameWithNamespace
32
+ fullPath
33
33
lastActivityAt
34
34
description
35
35
starCount
@@ -91,7 +91,7 @@ impl RepositoryForge for GitLab {
91
91
if let Some ( repo) = response. data . and_then ( |d| d. project ) {
92
92
Ok ( Some ( Repository {
93
93
id : repo. id ,
94
- name_with_owner : repo. name_with_namespace ,
94
+ name_with_owner : repo. full_path ,
95
95
description : repo. description ,
96
96
last_activity_at : repo. last_activity_at ,
97
97
stars : repo. star_count ,
@@ -123,7 +123,7 @@ impl RepositoryForge for GitLab {
123
123
if let Some ( node) = node {
124
124
let repo = Repository {
125
125
id : node. id ,
126
- name_with_owner : node. name_with_namespace ,
126
+ name_with_owner : node. full_path ,
127
127
description : node. description ,
128
128
last_activity_at : node. last_activity_at ,
129
129
stars : node. star_count ,
@@ -213,7 +213,7 @@ struct GraphProjectNode {
213
213
#[ serde( rename_all = "camelCase" ) ]
214
214
struct GraphProject {
215
215
id : String ,
216
- name_with_namespace : String ,
216
+ full_path : String ,
217
217
last_activity_at : Option < DateTime < Utc > > ,
218
218
description : Option < String > ,
219
219
star_count : i64 ,
0 commit comments