Github packages
Querying packages using Github's GraphQL API
Content-Type: application/json
Authorization: bearer [put your personal access token here]
Accept: application/vnd.github.packages-preview+json{ "query": "query { viewer { login } repository(name: \"ampersand\", owner: \"ampersandtarski\") { id packages (first: 10) { nodes { id name versions (first: 100) { nodes { id version } } } } } }" }
Deleting specific packages
Last updated