List all Shops
Query
query GetShop {
tenant {
shops {
id
name
tagline
description
vanityName
websiteUrl
logoUrl
coverUrl
user {
id
username
}
}
}
}
Response
{
"data": {
"tenant": {
"shops": [
{
"coverUrl": null,
"description": "Get your latest cyberwares from our awesome store",
"id": "2",
"logoUrl": null,
"name": "Cyberware shop",
"tagline": "Premier shop for Netrunners",
"user": {
"id": "1",
"username": "someone@example.com"
},
"vanityName": "cyberwareshop",
"websiteUrl": "https://warpgate.tech"
}
]
}
}
}
Last updated
Was this helpful?