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