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.
|
- import apollo from "../../lib/apollo.js";
-
- async function GetCarousels(token="") {
- var res = await apollo.query(
- `
- query{
- carousels(where: { business_partner: "1" })
- {
- img{
- url
- }
- }
- }
- `,
- token
- );
- return res;
- }
-
- module.exports = {
- GetCarousels: GetCarousels,
- };
|