aboutsummaryrefslogtreecommitdiff
path: root/src/stores/forums.js
blob: 2c03a05eeb2c643c13e80c2cfe40d7de50956e92 (plain)
1
2
3
4
5
import { store } from './apollo';
import { GET_FORUM, GET_FORUMS } from '$/data/queries';

export const getForum = (id) => store({ key: 'forum', query: GET_FORUM, variables: { id } });
export const getForums = () => store({ key: 'forums', query: GET_FORUMS, initialValue: [] });