使用 GraphQL 识别议题板
您可以通过使用如下方法来识别项目的议题看板:
- GraphiQL。
-
cURL
。
使用 GraphiQL
您可以使用 GraphiQL 来列举项目的议题看板:
- 打开 GraphiQL:
- 对 JihuLab.com,使用
https://jihulab.com/-/graphql-explorer
- 对私有化部署,使用
https://gitlab.example.com/-/graphql-explorer
- 对 JihuLab.com,使用
-
将如下文本拷贝至左侧窗口,此查询获取
gitlab-docs
仓库的议题看板:query { project(fullPath: "gitlab-org/gitlab-docs") { name forksCount statistics { wikiSize } issuesEnabled boards { nodes { id name } } } }
- 选择 运行。
要查看某个具体的议题看板,从结果中拷贝数字标识符。比如,如果标识符是 105011
,使用如下 URL 来查看议题看板:
https://gitlab.com/gitlab-org/gitlab-docs/-/boards/105011