summaryrefslogtreecommitdiff
path: root/queries
diff options
context:
space:
mode:
authorGravatar Anshul Gupta <ansg191@anshulg.com> 2025-06-12 01:43:36 -0700
committerGravatar Anshul Gupta <ansg191@anshulg.com> 2025-06-12 01:46:22 -0700
commite3b96711f9f7bb2c8ec6c3c51b7525d0f5fd9413 (patch)
tree1b2ba847333bae38424571bab964ad2ffab0fa87 /queries
parent179679633a9fc3317585167f86c87a7fe8394945 (diff)
downloadgithub-mirror-e3b96711f9f7bb2c8ec6c3c51b7525d0f5fd9413.tar.gz
github-mirror-e3b96711f9f7bb2c8ec6c3c51b7525d0f5fd9413.tar.zst
github-mirror-e3b96711f9f7bb2c8ec6c3c51b7525d0f5fd9413.zip
Implement sourcehut remote
Diffstat (limited to 'queries')
-rw-r--r--queries/github/gh_identity.graphql (renamed from queries/identity.graphql)0
-rw-r--r--queries/github/gh_list_repos.graphql (renamed from queries/list_repos.graphql)0
-rw-r--r--queries/srht/srht_list_repos.graphql11
3 files changed, 11 insertions, 0 deletions
diff --git a/queries/identity.graphql b/queries/github/gh_identity.graphql
index 8381490..8381490 100644
--- a/queries/identity.graphql
+++ b/queries/github/gh_identity.graphql
diff --git a/queries/list_repos.graphql b/queries/github/gh_list_repos.graphql
index d7d36b3..d7d36b3 100644
--- a/queries/list_repos.graphql
+++ b/queries/github/gh_list_repos.graphql
diff --git a/queries/srht/srht_list_repos.graphql b/queries/srht/srht_list_repos.graphql
new file mode 100644
index 0000000..ffbbd45
--- /dev/null
+++ b/queries/srht/srht_list_repos.graphql
@@ -0,0 +1,11 @@
+query GetUserRepos($username: String!, $cursor: Cursor) {
+ user(username: $username) {
+ canonicalName
+ repositories(filter: { count: 10 }, cursor: $cursor) {
+ cursor
+ results {
+ name
+ }
+ }
+ }
+}