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