1 2 3 4
import { store } from './apollo'; import { GET_POST } from '$/data/queries'; export const getPost = (id) => store({ key: 'post', query: GET_POST, variables: { id } });