{{< details >}}

  • Tier: 基础版, 专业版, 旗舰版
  • Offering: JihuLab.com, 私有化部署

{{< /details >}}

你可以使用以下方法识别项目的议题板

  • GraphiQL。
  • cURL

使用 GraphiQL

你可以使用 GraphiQL 列出项目的议题板。

  1. 打开 GraphiQL:
    • 对于 JihuLab.com,使用:https://jihulab.com/-/graphql-explorer
    • 对于极狐GitLab私有化部署,使用:https://gitlab.example.com/-/graphql-explorer
  2. 复制以下文本并粘贴到左侧窗口中。这个查询会获取 docs-gitlab-com 仓库的议题板。

    query {
      project(fullPath: "gitlab-org/technical-writing/docs-gitlab-com") {
        name
        forksCount
        statistics {
          wikiSize
        }
        issuesEnabled
        boards {
          nodes {
            id
            name
          }
        }
      }
    }
    
  3. 选择 Play

要查看这些议题板之一,请从输出中复制一个数字标识符。例如,如果标识符是 7174622,使用以下 URL 访问议题板:

https:/gitlab.com/gitlab-org/technical-writing/docs-gitlab-com/-/boards/7174622

相关主题