aboutsummaryrefslogtreecommitdiff
path: root/src/data/queries.js
blob: de223cb110412e3999c18b3b3ae50d9fb6662384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { gql } from '@apollo/client/core';

export const GET_FORUMS = gql`
  query GetForums {
    forums {
      id
      glyph
      label
      position
    }
  }
`;

export const GET_FORUM = gql`
  query GetForum($id: ID!) {
    forum(id: $id) {
      id
      glyph
      label
      position
      topics {
        id
        title,
        updated_at,
        ttl
      }
    }
  }
`;