You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

20 rivejä
276 B

  1. import apollo from "../lib/apollo.js";
  2. async function GET(token="") {
  3. var res = await apollo.query(
  4. `
  5. query{
  6. businessPartners
  7. {
  8. name
  9. }
  10. }
  11. `,
  12. token
  13. );
  14. return res;
  15. }
  16. module.exports = {
  17. GET: GET,
  18. };