File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ public async Task<GroupByResult> FetchObjects(
4040 public async Task < WeaviateResult > FetchObjects (
4141 Guid ? after = null ,
4242 uint ? limit = null ,
43+ uint ? offset = null ,
4344 Filter ? filters = null ,
4445 AutoArray < Sort > ? sort = null ,
4546 Rerank ? rerank = null ,
@@ -53,6 +54,7 @@ await _grpc.FetchObjects(
5354 _collectionName ,
5455 after : after ,
5556 limit : limit ,
57+ offset : offset ,
5658 rerank : rerank ,
5759 filters : filters ,
5860 sort : sort ,
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ internal partial class WeaviateGrpcClient
3232 Filter ? filters = null ,
3333 IEnumerable < Sort > ? sort = null ,
3434 uint ? limit = null ,
35+ uint ? offset = null ,
3536 GroupByRequest ? groupBy = null ,
3637 Guid ? after = null ,
3738 string ? tenant = null ,
@@ -51,6 +52,7 @@ internal partial class WeaviateGrpcClient
5152 filters : filters ,
5253 sort : sort ,
5354 limit : limit ,
55+ offset : offset ,
5456 groupBy : groupBy ,
5557 after : after ,
5658 tenant : tenant ,
You can’t perform that action at this time.
0 commit comments