File size: 370 Bytes
38e70c4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
query = """
query GetRepository {
  repository(owner: "huggingface", name: "transformers"){
    nameWithOwner
    issues (first: 50){
      totalCount
      nodes {
        number
        comments (first: 10) {
          totalCount
          nodes {
            reactions (first: 10) {
              totalCount
            }
          }
        }
      }
    }
  }
}
"""