aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/Identity/UserIdentity.graphql
blob: 01e8c3e56bb69f25d64103a66258849af5f62bbf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#import "./IdentityFragment.graphql"

query GetUserById($userId: String!) {
  repository {
    name
    identity(prefix: $userId) {
      ...Identity
    }
  }
}