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
| { | |
| "errors": [ | |
| { | |
| "message": "Authentication failure" | |
| } | |
| ] | |
| } |
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
| { | |
| "errors": [ | |
| { | |
| "message": "Not authorized to access this field", | |
| "locations": [ { "line": 3, "column": 10 } ], | |
| "path": [ "User", "secrets" ], | |
| "extensions": { | |
| "code": "UNAUTHORIZED" | |
| } | |
| }, |
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
| type Push { | |
| commits: [Commit] | |
| } | |
| type Commit { | |
| sha: String! | |
| } |
OlderNewer