1 import { store } from './apollo';
2 import { GET_FORUM, GET_FORUMS } from '$lib/data/queries';
4 export const getForum = (id: string) =>
5 store({ key: 'forum', query: GET_FORUM, variables: { id } });
6 export const getForums = () => store({ key: 'forums', query: GET_FORUMS, initialValue: [] });