import { store } from './apollo'; import { GET_TOPIC } from '$lib/data/queries'; export const getTopic = (id: string) => store({ key: 'topic', query: GET_TOPIC, variables: { id } });