aboutsummaryrefslogtreecommitdiff
path: root/src/stores/posts.js
blob: 0cbf1d5e44cfdae14589870eb844190a8baeca72 (plain)
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 } });