aboutsummaryrefslogtreecommitdiff
path: root/src/stores/topic.js
blob: 3225a8314e54752a3cea011de34e56b3af9bcefc (plain)
1
2
3
4
import { store } from './apollo';
import { GET_TOPIC } from '$data/queries';

export const getTopic = (id) => store({ key: 'topic', query: GET_TOPIC, variables: { id } });