doc/api/graphql/sample_issue_boards.md
{{< details >}}
{{< /details >}}
You can identify issue boards for a project by using:
cURL.You can use GraphiQL to list the issue boards for a project.
Open GraphiQL:
https://gitlab.com/-/graphql-explorerhttps://gitlab.example.com/-/graphql-explorerCopy the following text and paste it in the left window. This query
gets issue boards for the docs-gitlab-com repository.
query {
project(fullPath: "gitlab-org/technical-writing/docs-gitlab-com") {
name
forksCount
statistics {
wikiSize
}
issuesEnabled
boards {
nodes {
id
name
}
}
}
}
Select Play.
To view one of these issue boards, copy a numeric identifier from the output.
For example, if the identifier is 7174622, use this URL to go to the issue board:
https:/gitlab.com/gitlab-org/technical-writing/docs-gitlab-com/-/boards/7174622