Useful IDs and GraphQL snippets for automating tasks against the eclipse-score GitHub organization.
Repo-specific notes (category IDs, discussion lists per feature team, etc.) live in the
.github/docs/score_github_api.mdof each respective repository and reference this file.
- Login:
eclipse-score - Node ID:
O_kgDOCy9hXw - Org-level discussion URLs:
https://github.com/orgs/eclipse-score/discussions/<number> - Org discussions are physically stored in the
eclipse-score/scorerepository
| Feature Team | Category ID |
|---|---|
| Persistency FT | DIC_kwDONP32A84ClSxX |
Org discussions are stored in
eclipse-score/score, not under an org-level field. Userepository(owner: "eclipse-score", name: "score") { discussions(...) }— the intuitiveorganization { discussions }path does not exist in the GitHub GraphQL API.
gh api graphql -f query='
{
repository(owner: "eclipse-score", name: "score") {
discussions(first: 100, categoryId: "<CATEGORY_ID>") {
nodes { number title closed id }
}
}
}'