Skip to content

Commit

Permalink
misc: request smaller amount of data on retryAllInvoicePayments (#1713)
Browse files Browse the repository at this point in the history
  • Loading branch information
ansmonjol committed Sep 5, 2024
1 parent 862ff06 commit 45d5328
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/generated/graphql.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7561,7 +7561,7 @@ export type RetryAllInvoicePaymentsMutationVariables = Exact<{
}>;


export type RetryAllInvoicePaymentsMutation = { __typename?: 'Mutation', retryAllInvoicePayments?: { __typename?: 'InvoiceCollection', collection: Array<{ __typename?: 'Invoice', id: string }> } | null };
export type RetryAllInvoicePaymentsMutation = { __typename?: 'Mutation', retryAllInvoicePayments?: { __typename?: 'InvoiceCollection', metadata: { __typename?: 'CollectionMetadata', totalCount: number } } | null };

export type GetPlanForDetailsQueryVariables = Exact<{
planId: Scalars['ID']['input'];
Expand Down Expand Up @@ -19724,8 +19724,8 @@ export type GetCreditNotesListQueryResult = Apollo.QueryResult<GetCreditNotesLis
export const RetryAllInvoicePaymentsDocument = gql`
mutation retryAllInvoicePayments($input: RetryAllInvoicePaymentsInput!) {
retryAllInvoicePayments(input: $input) {
collection {
id
metadata {
totalCount
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/pages/InvoicesPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ gql`
mutation retryAllInvoicePayments($input: RetryAllInvoicePaymentsInput!) {
retryAllInvoicePayments(input: $input) {
collection {
id
metadata {
totalCount
}
}
}
Expand Down

0 comments on commit 45d5328

Please sign in to comment.