Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

28 Zeilen
553 B

  1. import apollo from "../../lib/apollo.js";
  2. async function GetCheckoutproduct(token = "") {
  3. var res = await apollo.query(
  4. `
  5. query{
  6. checkouts{
  7. id
  8. transaction_id
  9. product_img
  10. {
  11. url
  12. }
  13. product_name
  14. product_color
  15. product_quantity
  16. product_total
  17. }
  18. }
  19. `,
  20. token
  21. );
  22. return res;
  23. }
  24. module.exports = {
  25. GetCheckoutproduct: GetCheckoutproduct,
  26. };