Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save superbrothers/0e9acc3a9d97df91752ecf43fb857b5f to your computer and use it in GitHub Desktop.
Save superbrothers/0e9acc3a9d97df91752ecf43fb857b5f to your computer and use it in GitHub Desktop.
{
repository(owner: "kubernetes", name: "kubernetes") {
issues(labels: ["sig/cli"], first: 20, orderBy: {field: CREATED_AT, direction: DESC}) {
nodes {
title
bodyHTML
url
author {
login
url
}
createdAt
}
}
}
}
{
organization(login: "kubernetes") {
repositories(first: 20, orderBy: {field: CREATED_AT, direction: DESC}) {
nodes {
name
description
url
createdAt
}
}
}
}
{
search(query: "topic:kubernetes created:>2017-07-10", type: REPOSITORY, first: 20) {
nodes {
... on Repository {
url
name
descriptionHTML
createdAt
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment