File: issues_query.graphql

package info (click to toggle)
rust-octocrab 0.43.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,532 kB
  • sloc: makefile: 2
file content (14 lines) | stat: -rw-r--r-- 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query IssuesQuery($owner: String!, $name: String!, $pageSize: Int!, $before: String) {
    repository(owner: $owner, name: $name) {
        issues(last: $pageSize, before: $before, states: OPEN) {
            nodes {
                title
                url
            }
            pageInfo {
                hasPreviousPage
                startCursor
            }
        }
    }
}