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