import apollo from "../../../lib/apollo"; async function industries(){ var res = await apollo.query( ` query{ industries{ data{ attributes{ Name Icon } } } }` ); return res; } module.exports = { industries:industries, };