|
- import apollo from "../../lib/apollo.js";
-
- async function GetNews(token="", start = 0) {
- var res = await apollo.query(
- `
- query($start: Int!) {
- latestNews(limit:6,start:$start)
- {
- id
- title
- description
- img{
- url
- }
- }
- }
- `,
- token,
- {
- start: start,
- }
- );
- return res;
- }
-
- module.exports = {
- GetNews: GetNews,
- };
|