4144e9ffd0
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
18 lines
235 B
TypeScript
18 lines
235 B
TypeScript
import gql from "graphql-tag";
|
|
|
|
/* eslint-disable import/prefer-default-export */
|
|
export const TAGS = gql`
|
|
query {
|
|
tags {
|
|
id
|
|
related {
|
|
id
|
|
slug
|
|
title
|
|
}
|
|
slug
|
|
title
|
|
}
|
|
}
|
|
`;
|