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