aboutsummaryrefslogtreecommitdiff
path: root/src/stores/topics.js
blob: c90f1a3b9a437823105fd347a8ac1bea7f5fcf86 (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 } });