Github Graphql Filter issues by Milestone
问题 I'm wrestling with Github's graphql api (while learning graphql) trying to get it to list all issues in a certain milestone. I can't figure out how to do that from the API docs. I can query issues and see what milestone they're in (sorry, names redacted): query { repository(owner:"me", name:"repo") { issues(last:10) { nodes { milestone { id title } } } } } I wish there was a way to say something like issues(milestoneID:"xyz") , or perhaps if Issue would define a MilestoneConnection (doesn't