Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
chtrembl committed Jan 5, 2024
1 parent a38ae0d commit cbeea7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ public DPResponse search(String text, Classification classification) {
product.setProductId(productJsonObject.get("productId").getAsString());
product.setName(productJsonObject.get("name").getAsString());
product.setDescription(productJsonObject.get("description").getAsString());
product.setPhotoURL(productJsonObject.get("photoURL").getAsString());
products.add(product);
//}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"searchFields": "name,category/name,description",
"searchMode": "any",
"scoringStatistics": "global",
"select": "productId,name,category/name,description",
"select": "productId,name,category/name,description,photoURL",
"skip": 0,
"top": 10
}

0 comments on commit cbeea7b

Please sign in to comment.