blog-fs/commons/graphql/queries.ts

13 lines
176 B
TypeScript
Raw Normal View History

2021-05-02 10:42:38 +08:00
import gql from "graphql-tag";
export const ARTICLE_FOR_HOME = gql`
query ArticlesForHome {
articles {
id
title
content
publishedAt
}
}
`;