Created
December 6, 2020 14:50
-
-
Save john012343210/6dbd1d841a8fdbb67e72755cece96076 to your computer and use it in GitHub Desktop.
BugReportApiV4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
query { | |
user(login:"AronWater") { | |
repositories(first:1,after:null) | |
{ | |
totalCount | |
totalDiskUsage | |
pageInfo { | |
endCursor | |
hasNextPage | |
hasPreviousPage | |
startCursor | |
} | |
edges{ | |
node{ | |
collaborators { | |
totalCount | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
this is the response
and I have check that
collaborators
field is what causing this problem,if we replace collaborators field to any other common field of a repo, everything is ok.