Get Shop
Query
query GetShop($shopId: ID!) {
tenant {
shop(shopId: $shopId) {
id
name
tagline
description
vanityName
websiteUrl
logoUrl
coverUrl
user {
id
username
}
}
}
}
Variables
{
"shopId": 1
}
Response
{
"data": {
"tenant": {
"shop": {
"coverUrl": null,
"description": "Get your latest cyberwares from our awesome store",
"id": "1",
"logoUrl": null,
"name": "Cyberware shop",
"tagline": "Premier shop for Netrunners",
"user": null,
"vanityName": "cyberwareshop",
"websiteUrl": "https://warpgate.tech"
}
}
}
}
Last updated
Was this helpful?