"""
Store/platform information (Spotify, Apple Music, etc.)
Shareable type used across graphql-analytics, graphql-knowledge, and graphql-product
"""
type Store @key(fields: "storeId") @shareable {
    "Numeric store identifier (286=Spotify, 1=iTunes/Apple, 453=YouTube, etc.)"
    storeId: Int! @shareable
    # Note: `storeName` removed — only `storeId` is available on this entity now
}
