13 lines
176 B
TypeScript
13 lines
176 B
TypeScript
|
import gql from "graphql-tag";
|
||
|
|
||
|
export const ARTICLE_FOR_HOME = gql`
|
||
|
query ArticlesForHome {
|
||
|
articles {
|
||
|
id
|
||
|
title
|
||
|
content
|
||
|
publishedAt
|
||
|
}
|
||
|
}
|
||
|
`;
|