mobilizon.chapril.org-mobil.../js/src/graphql/tags.ts
Thomas Citharel 9c9f1385fb
Introduce group posts
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2020-07-30 16:55:35 +02:00

25 lines
284 B
TypeScript

import gql from "graphql-tag";
export const TAG_FRAGMENT = gql`
fragment TagFragment on Tag {
id
slug
title
}
`;
export const TAGS = gql`
query {
tags {
id
related {
id
slug
title
}
slug
title
}
}
`;