]> git.r.bdr.sh - rbdr/forum/blob - src/lib/stores/tags.ts
Update / use typescript
[rbdr/forum] / src / lib / stores / tags.ts
1 import { store } from './apollo';
2 import { GET_TAG } from '$lib/data/queries';
3
4 export const getTag = (id: string) => store({ key: 'tag', query: GET_TAG, variables: { id } });