Skip to content

Commit f2ee33e

Browse files
committed
simple query param
1 parent 8683c40 commit f2ee33e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pkg/connector/client/client.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,9 @@ func (c *GitlabClient) ListProjects(ctx context.Context, groupID string, nextLin
277277
opts := KeysetPaginationOpts{OrderBy: "id", Sort: "asc"}
278278

279279
newNextLink, rateLimitDesc, err := c.listWithKeysetPagination(ctx, endpoint, nextLink, &projects, opts,
280-
WithQueryParam("include_subgroups", "true"))
280+
WithQueryParam("include_subgroups", "true"),
281+
WithQueryParam("simple", "true"),
282+
)
281283
if err != nil {
282284
return nil, "", rateLimitDesc, err
283285
}

0 commit comments

Comments
 (0)