blob: 718e1e581cb19c408024783274e7999f10a5948f (
plain)
1
2
3
4
5
6
7
|
import { store } from './apollo';
import { GET_POST } from '$lib/data/queries';
import type { Post } from '$lib/data/types';
export const getPost = (id: string) =>
store<Post>({ key: 'post', query: GET_POST, variables: { id } });
|