diff options
| author | Max Audron <audron@cocaine.farm> | 2022-06-07 12:28:18 +0200 |
|---|---|---|
| committer | Maximilian Manz <maximilian.manz@de.clara.net> | 2022-06-20 11:33:04 +0200 |
| commit | f869c7f52d8fd1f1ef61e218bbec4d0dac27673d (patch) | |
| tree | 8029b33976fc897a4ae81785e622a7e61ad2eb67 /graphql/projects_query.graphql | |
init
Diffstat (limited to 'graphql/projects_query.graphql')
| -rw-r--r-- | graphql/projects_query.graphql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/graphql/projects_query.graphql b/graphql/projects_query.graphql new file mode 100644 index 0000000..dee251a --- /dev/null +++ b/graphql/projects_query.graphql @@ -0,0 +1,11 @@ +query Projects($scope: String!) { + projects(membership: true, searchNamespaces: true, search: $scope) { + nodes { + id + name + fullPath + sshUrlToRepo + httpUrlToRepo + } + } +} |
