Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 

22 wiersze
296 B

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