Github API:仅搜索包含';t尚未请求/批准更改

Github API:仅搜索包含';t尚未请求/批准更改,api,github-api,Api,Github Api,我正在尝试使用以下方法获取打开的拉取请求列表: 'https://api.github.com/search/issues?q=is:open+is:pr+org:myOrg+draft:false' 但我也得到了批准的请求,这不是我想要的 openPrData: Array(3) 0: {...} 1: {...} 2: id: 77 repo: "example" title: "Update example"

我正在尝试使用以下方法获取打开的拉取请求列表:

'https://api.github.com/search/issues?q=is:open+is:pr+org:myOrg+draft:false'

但我也得到了批准的请求,这不是我想要的

openPrData: Array(3)
  0: {...}
  1: {...}
  2: 
    id: 77
    repo: "example"
    title: "Update example"
    author: "exampleAuthor"
    status: "open"
  

approvedPullRequests: Array(1)
  0: 
    id: 77
    repo: "example"
    title: "Update example"
    author: "exampleAuthor"
    status: "good"
如何仅筛选尚未请求更改或尚未批准的请求

我看过了,但找不到解决问题的办法