Edits your store information
mutation {
store_edit(
storeInput: {
storeName: "" # Store name
isStoreNamePublic: true # Is store name public
isItemsOnSalePublic: true # Is items on sale public
isTradeHistoryPublic: true # Is trade history public
isAchievementsPublic: true # Is achievements public
avatar: STEAM # Store avatar
banner: BANNER_1 # Store banner
customAvatar: # Custom avatar
encodedCustomAvatar: "" # Custom avatar in base64
}
) {
# Person Store ID
id # 1ee77cd5-ba25-6ffe-a772-0242ac120004
# Store name
storeName # My Best Store
# Store slug
slug # my-best-store
# Is top seller
isTopSeller # true
# Is store name public
isStoreNamePublic # true
# Is items on sale public
isItemsOnSalePublic # true
# Is trade history public
isTradeHistoryPublic # true
# Is achievements public
isAchievementsPublic # true
# Store avatar
avatar # steam
# Store banner
banner # banner-1
# Steam avatar
steamAvatar # https://avatars.akamai.steamstatic.com/111_full.jpg
# Is KYC verified
isKycVerified # true
# Registered at
registeredAt # 2023-11-29T23:33:27+0000
# Years on market
years # 3
# Avatar uploaded by user
customAvatar # https://avatars.akamai.steamstatic.com/custom_full.jpg
# Account level
level # TODO EXAMPLE
# Earned points
points # TODO EXAMPLE
# Points left to the next level
leftPoints # TODO EXAMPLE
# instance of PersonAchievement
achievements {
# Achievement name
name # TODO EXAMPLE
# Unlocked at
unlockedAt # TODO EXAMPLE
# Achievement type
type # TODO EXAMPLE
# Achievement status
status # TODO EXAMPLE
# Achievement points
points # TODO EXAMPLE
# instance of AchievementParamUnion. Possible types:
# AchievementStringParam
# AchievementBooleanParam
params
}
}
}