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 } });