in src/LangList.js [40:59]
query($limit: Int!) {
search(
type: ISSUE
query: "org:reactjs Translation Progress in:title"
first: $limit
) {
nodes {
... on Issue {
title
body
createdAt
lastEditedAt
number
repository {
name
}
}
}
}
}