Last active
October 6, 2022 21:41
-
-
Save amenocal/e047dc4d1686a41fb9357705afa8a0da to your computer and use it in GitHub Desktop.
Get Deploy Keys of an Organization
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 ($login: String!, $endCursor: String) { | |
| organization(login: $login) { | |
| repositories(first: 10, after: $endCursor) { | |
| pageInfo { | |
| endCursor | |
| hasNextPage | |
| } | |
| nodes { | |
| name | |
| deployKeys(first: 100) { | |
| nodes { | |
| title | |
| id | |
| createdAt | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment