GitLab API

GitlabTool

Actions1000

Overview

This node operation retrieves the list of users who have starred a specific project on GitLab. It is useful for scenarios where you want to see who has shown interest in a project by starring it, such as for project popularity analysis or user engagement tracking.

Use Case Examples

  1. Fetch the list of starrers for a project with a given project ID.
  2. Search for users who starred a project matching a specific search term.
  3. Paginate through the list of starrers to handle large numbers of users.

Properties

Name Meaning
Skip Authentication Option to skip authentication for the request.
baseUrl The base URL of the GitLab instance, defaulting to https://gitlab.com.
Method HTTP method to use for the request, default is GET.
Query Parameters Optional query parameters to filter and paginate the results.
Path Parameters Path parameters required for the request.

Output

JSON

  • id - The ID or URL-encoded path of the project.
  • starrers - List of users who have starred the project, optionally filtered by search criteria and paginated.

Dependencies

  • GitLab API authentication credential

Troubleshooting

  • Ensure the project ID is correctly provided in the path parameters; missing or incorrect ID will cause request failure.
  • Verify that the authentication credential is valid and has sufficient permissions to access project starrers.
  • Check the base URL if using a self-hosted GitLab instance to ensure it is correct.
  • Pagination parameters (page, per_page) should be valid integers; invalid values may cause errors or unexpected results.

Links

Discussion