Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

24 строки
340 B

  1. import apollo from "../../../lib/apollo";
  2. async function industries(){
  3. var res = await apollo.query(
  4. `
  5. query{
  6. industries{
  7. data{
  8. attributes{
  9. Name
  10. Icon
  11. }
  12. }
  13. }
  14. }`
  15. );
  16. return res;
  17. }
  18. module.exports = {
  19. industries:industries,
  20. };