Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-07-07 15:09:35 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-07-07 15:09:35 +0300
commit2abeca2d92cfe3bc18441b63ca0c54af086b206e (patch)
tree72f02f9c0470b897f31c45a6b7ccce6fe57955b0 /app/assets/javascripts/graphql_shared
parentf4a9d976cf03888fbfd81ab9813720f4e8ec8056 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/graphql_shared')
-rw-r--r--app/assets/javascripts/graphql_shared/queries/current_user.query.graphql7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/assets/javascripts/graphql_shared/queries/current_user.query.graphql b/app/assets/javascripts/graphql_shared/queries/current_user.query.graphql
new file mode 100644
index 00000000000..93335c93c1d
--- /dev/null
+++ b/app/assets/javascripts/graphql_shared/queries/current_user.query.graphql
@@ -0,0 +1,7 @@
+#import "../fragments/user.fragment.graphql"
+
+query currentUser {
+ currentUser {
+ ...User
+ }
+}