mutation

getApplicationQRCode

Generates a QR code for the application for easy sharing.
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 getApplicationQRCode {
2 getApplicationQRCode {
3 link
4 svg
5 }
6}
Try it
Response
1{
2 "getApplicationQRCode": {
3 "link": "link",
4 "svg": "svg"
5 }
6}