2

Is there any way to find all interactions between 2 users? For e.g. Here are 2 users...

https://github.com/kavgan

https://github.com/shantanuo

I remember that I have raised an issue in one of repos of the user "kavgan". But is there a way to find that? What I expect is this...

https://github.com/kavgan/nlp-in-practice/issues/3

shantanuo
  • 31,689
  • 78
  • 245
  • 403

1 Answers1

1

You can use filter in an issue search for a given repository, as described in this article

is:issue author:shantanuo

See the results here.

But to apply the same to all repositories, you would need a graphql query, similar to this one.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250