From f869c7f52d8fd1f1ef61e218bbec4d0dac27673d Mon Sep 17 00:00:00 2001 From: Max Audron Date: Tue, 7 Jun 2022 12:28:18 +0200 Subject: init --- graphql/projects_query.graphql | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 graphql/projects_query.graphql (limited to 'graphql/projects_query.graphql') 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 + } + } +} -- cgit v1.2.3