aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/graphql/fragments.graphql
blob: 227d00b2fc087e9a80495afb56a3b58ee4eb3c5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Label.tsx
fragment Label on Label {
  name
  color {
    R
    G
    B
  }
}

# Author.tsx
fragment authored on Authored {
  author {
    name
    email
    displayName
    avatarUrl
    humanId
    id
  }
}