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