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