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

current_user_namespace.query.graphql « queries « graphql « settings « projects « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ae6ee1428bc95a436809744730936011c26f6e7 (plain)
1
2
3
4
5
6
7
8
9
query currentUserNamespace {
  currentUser {
    id
    namespace {
      id
      fullName
    }
  }
}