Skip to content

Commit

Permalink
1086 Removes magic value
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardovdheijden committed May 16, 2024
1 parent c921ca6 commit a28d6a6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { MAXIMUM_ITEMS_FOR_BULK_FETCHING } from '@/configuration';
import {
GraphqlFilter,
GraphqlQueryVariables,
Expand Down Expand Up @@ -104,7 +105,7 @@ export const taskListSummaryQueryVariables: GraphqlQueryVariables<Process> = {
export const productsSummaryQueryVariables: GraphqlQueryVariables<
ProductsSummary & Subscription
> = {
first: 1000,
first: MAXIMUM_ITEMS_FOR_BULK_FETCHING,
after: 0,
sortBy: {
field: 'name',
Expand Down

0 comments on commit a28d6a6

Please sign in to comment.