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

get_user_callouts.query.graphql « queries « graphql « pipelines « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 12b391e41ac322aafde2bc479eab0430033a4d37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query getUser {
  currentUser {
    id
    __typename
    callouts {
      __typename
      nodes {
        __typename
        featureName
      }
    }
  }
}