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

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