LysandreJik's picture
Initial commit
38e70c4
raw
history blame
370 Bytes
query = """
query GetRepository {
repository(owner: "huggingface", name: "transformers"){
nameWithOwner
issues (first: 50){
totalCount
nodes {
number
comments (first: 10) {
totalCount
nodes {
reactions (first: 10) {
totalCount
}
}
}
}
}
}
}
"""