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 } } } `;