'Can we use type: issue only with GitHub search issues/PR API?

I have this query

https://api.github.com/repos/tensorflow/tensorflow/issues?q=per_page=100&page=26

This can return more than 1000 search results, but the issue is that I couldn't figure out how to use the option type: issue with it. I don't want the pull requests. you can use the search

https://api.github.com/search/issues?q=is:issue%20repo:tensorflow/tensorflow&per_page=100&page=24

But this does not work on pages 10 and forward. I want to know if I can't use a filter for the first method to return only the issues, how can I know if an issue is a pull request?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source