Skip to content

Commit 06fd5e1

Browse files
committed
Cherry-pick #19: returns all products instead of top 500 which is the default option of examine.
1 parent 0abd8e0 commit 06fd5e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Umbraco.Commerce.ProductFeeds.Core/Features/ProductQueries/Implementations/ProductQueryService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public ICollection<IPublishedContent> GetPublishedProducts(GetPublishedProductsP
5656
}
5757

5858
IEnumerable<string> ids = baseQuery
59-
.Execute()
59+
.Execute(QueryOptions.SkipTake(0, int.MaxValue))
6060
.Select(x => x.Id);
6161

6262
List<IPublishedContent> result = new();

0 commit comments

Comments
 (0)