Last active
May 30, 2021 16:08
-
-
Save ma2gedev/cf5253da7dba27bb46f6df7b8a2032b2 to your computer and use it in GitHub Desktop.
Revisions
-
ma2gedev revised this gist
Sep 2, 2018 . 1 changed file with 15 additions and 13 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -26,20 +26,22 @@ query { ``` ``` query { repository(owner: "ma2gedev", name: "power_assert_ex") { id name issues(first:2) { totalCount nodes { title } } description createdAt codeOfConduct { body url } } } ``` -
ma2gedev revised this gist
Aug 31, 2018 . 1 changed file with 9 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,9 +1,12 @@ ``` query { viewer { login } } ``` ``` query { viewer { login @@ -20,7 +23,9 @@ query { } } } ``` ``` repository(owner: "ma2gedev", name: "power_assert_ex") { id name @@ -37,7 +42,9 @@ repository(owner: "ma2gedev", name: "power_assert_ex") { url } } ``` ``` mutation { addStar(input:{ starrableId: "MDEwOlJlcG9zaXRvcnk0MzQzODc4NA==" @@ -50,4 +57,5 @@ mutation { } } } } ``` -
ma2gedev created this gist
Aug 31, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,53 @@ query { viewer { login } } query { viewer { login bioHTML avatarUrl(size: 2) commitComments(first: 1) { edges { cursor } nodes { body } totalCount } } } repository(owner: "ma2gedev", name: "power_assert_ex") { id name issues(first:2) { totalCount nodes { title } } description createdAt codeOfConduct { body url } } mutation { addStar(input:{ starrableId: "MDEwOlJlcG9zaXRvcnk0MzQzODc4NA==" }){ starrable { stargazers(first: 3) { nodes{ name } } } } }