You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/recombee/api_client/api_requests/AddManualReqlSegment.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@
13
13
14
14
/**
15
15
* Adds a new Segment into a Manual ReQL Segmentation.
16
-
* The new Segment is defined by a [ReQL](https://docs.recombee.com/reql.html) filter that returns `true` for an item in case that this item belongs to the segment.
16
+
* The new Segment is defined by a [ReQL](https://docs.recombee.com/reql) filter that returns `true` for an item in case that this item belongs to the segment.
Copy file name to clipboardExpand all lines: src/main/java/com/recombee/api_client/api_requests/DeleteItem.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@
14
14
/**
15
15
* Deletes an item of the given `itemId` from the catalog.
16
16
* If there are any *purchases*, *ratings*, *bookmarks*, *cart additions*, or *detail views* of the item present in the database, they will be deleted in cascade as well. Also, if the item is present in some *series*, it will be removed from all the *series* where present.
17
-
* If an item becomes obsolete/no longer available, it is meaningful to keep it in the catalog (along with all the interaction data, which are very useful), and **only exclude the item from recommendations**. In such a case, use [ReQL filter](https://docs.recombee.com/reql.html) instead of deleting the item completely.
17
+
* If an item becomes obsolete/no longer available, it is meaningful to keep it in the catalog (along with all the interaction data, which are very useful), and **only exclude the item from recommendations**. In such a case, use [ReQL filter](https://docs.recombee.com/reql) instead of deleting the item completely.
Copy file name to clipboardExpand all lines: src/main/java/com/recombee/api_client/api_requests/DeleteMoreItems.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -13,18 +13,18 @@
13
13
14
14
/**
15
15
* Deletes all the items that pass the filter.
16
-
* If an item becomes obsolete/no longer available, it is meaningful to **keep it in the catalog** (along with all the interaction data, which are very useful) and **only exclude the item from recommendations**. In such a case, use [ReQL filter](https://docs.recombee.com/reql.html) instead of deleting the item completely.
16
+
* If an item becomes obsolete/no longer available, it is meaningful to **keep it in the catalog** (along with all the interaction data, which are very useful) and **only exclude the item from recommendations**. In such a case, use [ReQL filter](https://docs.recombee.com/reql) instead of deleting the item completely.
17
17
*/
18
18
publicclassDeleteMoreItemsextendsRequest {
19
19
20
20
/**
21
-
* A [ReQL](https://docs.recombee.com/reql.html) expression, which returns `true` for the items that shall be updated.
21
+
* A [ReQL](https://docs.recombee.com/reql) expression, which returns `true` for the items that shall be updated.
22
22
*/
23
23
protectedStringfilter;
24
24
25
25
/**
26
26
* Construct the request
27
-
* @param filter A [ReQL](https://docs.recombee.com/reql.html) expression, which returns `true` for the items that shall be updated.
27
+
* @param filter A [ReQL](https://docs.recombee.com/reql) expression, which returns `true` for the items that shall be updated.
Copy file name to clipboardExpand all lines: src/main/java/com/recombee/api_client/api_requests/DeleteSearchSynonym.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
importcom.recombee.api_client.util.HTTPMethod;
13
13
14
14
/**
15
-
* Deletes synonym of the given `id`. This synonym is no longer taken into account in the [Search items](https://docs.recombee.com/api.html#search-items).
15
+
* Deletes synonym of the given `id`. This synonym is no longer taken into account in the [Search items](https://docs.recombee.com/api#search-items).
0 commit comments