I'm trying to query our repo with git api to get all pull request created by a certain user:
But I'm still getting pull requests from other users as well:
This is the JSON result:
"value": [
{
.....
"createdBy": {
"displayName": "ABC",
....
"uniqueName": "domain\\ABC",
},
.....
"createdBy": {
"displayName": "DEF",
....
"uniqueName": "domain\\DEF",
},
What am I doing wrong?
