import apollo from "../../lib/apollo.js"; async function GetProduct(token="") { var res = await apollo.query( ` query{ products { name description img{ id } } } `, token ); return res; } module.exports = { GetProduct: GetProduct, };