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

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