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