propromo-software / propromo.rest

RestAPI for propromo (php) and propromo.ts.
https://rest-microservice.onrender.com
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Option, to fetch issues, with specific labels. (alternative to grouping by milestones) #28

Open jonasfroeller opened 6 months ago

jonasfroeller commented 6 months ago
organization(login:"propromo-software") {
    repository(name: "propromo") {
      issues(first: 10, labels: ["sprint-05"]) {
        nodes{
          title
        }
      }
    }
  }
jonasfroeller commented 6 months ago

filtering by sprint would be cool too, unfinished query:

search(query: "repo:propromo-software/propromo.rest is:issue is:open",first: 10, type: ISSUE) {
    issueCount
    edges {
      node {
        ... on Issue {
        state
        }
      }
    }
  }

https://docs.github.com/en/search-github/searching-on-github/searching-issues-and-pull-requests https://docs.github.com/en/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax

jonasfroeller commented 6 months ago

columns would have been cool too, but githubs api doesn't seem to support any of this... https://github.com/orgs/community/discussions/61175