Last active
July 15, 2017 15:33
-
-
Save superbrothers/0e9acc3a9d97df91752ecf43fb857b5f to your computer and use it in GitHub Desktop.
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
{ | |
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 | |
} | |
} | |
} | |
} |
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
{ | |
organization(login: "kubernetes") { | |
repositories(first: 20, orderBy: {field: CREATED_AT, direction: DESC}) { | |
nodes { | |
name | |
description | |
url | |
createdAt | |
} | |
} | |
} | |
} |
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
{ | |
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