mutation

getProductQRCodeBySlug

Creates a QR code for a specific product identified by its slug.
Arguments
Required
A short, human-readable, URL-friendly identifier of a product. You can get slug value from the endpoint.
Response
link
String
Original url that was used to encoded url into a QR code.
String representation of the QR Code in SVG format.
Mutation
1mutation getProductQRCodeBySlug($slug: String!) {
2 getProductQRCodeBySlug(slug: $slug) {
3 link
4 svg
5 }
6}
Try it
Input Variables
1{
2 "slug": "slug"
3}
Response
1{
2 "getProductQRCodeBySlug": {
3 "link": "link",
4 "svg": "svg"
5 }
6}