Skip to content

Commit

Permalink
perf(services/exporter): increase the number of pages we get
Browse files Browse the repository at this point in the history
  • Loading branch information
IgnisDa committed Jan 12, 2025
1 parent 4f492fe commit c2df68b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/services/exporter/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ impl ExporterService {
let related_metadata = metadata_list(
user_id,
MetadataListInput {
take: Some(1000),
search: Some(SearchInput {
page: Some(current_page),
..Default::default()
Expand Down Expand Up @@ -270,6 +271,7 @@ impl ExporterService {
user_id,
&self.0,
MetadataGroupsListInput {
take: Some(1000),
search: Some(SearchInput {
page: Some(current_page),
..Default::default()
Expand Down Expand Up @@ -325,6 +327,7 @@ impl ExporterService {
let related_people = people_list(
user_id,
PeopleListInput {
take: Some(1000),
search: Some(SearchInput {
page: Some(current_page),
..Default::default()
Expand Down

0 comments on commit c2df68b

Please sign in to comment.