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

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