Releases: VirtoCommerce/vc-module-experience-api
Releases · VirtoCommerce/vc-module-experience-api
3.816.0
3.815.0
3.814.0
3.800.5
🐞 Bug fixes
- (The anonymous cart is not cleared after merge. After the fix, the mutation will delete second cart after merge by default. Added mutation option deleteAfterMerge: bool. By default, true.)
3.800.4
🐞 Bug fixes
- (Adds CertainDate Filter to for product search in xapi if First listed and Listing expires are configured for product.)
3.449.6
🐞 Bug fixes
- (The anonymous cart is not cleared after merge. After the fix, the mutation will delete second cart after merge by default. Added mutation option deleteAfterMerge: bool. By default, true.)
3.449.5
🐞 Bug fixes
- (Adds CertainDate Filter to for product search in xapi if First listed and Listing expires are configured for product.)
3.813.0
3.812.0
🎯 Development
- (Expanded store settings query to include installed modules and public store settings for each module. This enhancement enables frontend applications to efficiently access module settings. Set the store platform setting to true to ensure accessibility and visibility of settings across the store query in XAPI. Example of the modules with public settings: Google Analytics, Hotjar, etc.)
query{
store(storeId: "B2B-store", cultureName: "en-US") {
storeId
settings {
modules { moduleId settings { name value } }
}
}
}
3.811.0
🎯 Development
- Adds page query that allows request page content by id.
🐞 Bug fixes
- Resolves seo by slug with empty store.
Pages Query
query{
pages(storeId: "B2B-store", cultureName: "en-US", keyword: "Test" ) {
totalCount
items{ permalink relativeUrl name id content }
}
}
Page Query
query{
page(storeId: "B2B-store", id: "QjJCLXN0b3JlOjpwYWdlczo6L2hvbWVwYWdlLnBhZ2U-" ) {
id name content
}
}