Skip to content

Releases: VirtoCommerce/vc-module-x-recommend

3.805.0

19 Dec 16:14
cb54ea6
Compare
Choose a tag to compare
10 localization files (#9)

* 10 localization files

10 localization files

* 10 localization files

1o localization files

* Remove localization files from root

---------

Co-authored-by: Oleg Zhuk <zhukoo@gmail.com>

3.804.0

25 Sep 14:18
e80b7e3
Compare
Choose a tag to compare

🎯 Development

  • add bought-together recommendation (#7)

Min conversion events count (default 1000). Set to 0 for no limit:
image

Add conversion events types "placeOrder" or "addToCart":

mutation pushHistoricalEvent ($command: InputPushHistoricalEventType!) {
  pushHistoricalEvent(command: $command)
}
{
  "command": {
    "storeId": "Electronics",
    "productId": "6e7a31c35c814fb389dc2574aa142b63",
    "sessionId": "12345",
    "eventType": "placeOrder"
  }
}

Use "sessionId" to group productId into distintct events (CustomerOrderId for placeOrder, CartId (or temp uniqueId since cartId is permanent) for "addToCart")

Query recommendations:

query  {
  recommendations(
    storeId:"Electronics"
    cultureName: "en-US"
    model: "bought-together"
    productId: "9cbd8f316e254a679ba34a900fccb076"
    maxRecommendations: 5
    currencyCode: "USD"
  )
  {
    products   
    {
      id
      name   
    }
  }
}

3.803.0

13 Sep 13:02
167964b
Compare
Choose a tag to compare

🎯 Development

  • Make graph types extendable (#6)

3.802.0

12 Sep 13:19
4384f25
Compare
Choose a tag to compare

🐞 Bug fixes

  • recentlyBrowsed variations fix (#5)

3.801.0

12 Sep 10:46
a119335
Compare
Choose a tag to compare

🎯 Development

  • add recentlyBrowsedQuery, pushHistoricalEventCommand (#4)

🐞 Bug fixes

  • change MaxRecommendations type (#3)

📝 Documentation

  • add read me (#2)

3.800.0

29 Aug 12:46
Compare
Choose a tag to compare

First version.