Skip to content

Instantly share code, notes, and snippets.

@amenocal
Last active October 6, 2022 21:41
Show Gist options
  • Select an option

  • Save amenocal/e047dc4d1686a41fb9357705afa8a0da to your computer and use it in GitHub Desktop.

Select an option

Save amenocal/e047dc4d1686a41fb9357705afa8a0da to your computer and use it in GitHub Desktop.
Get Deploy Keys of an Organization
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