Skip to content

Commit

Permalink
feat(dunning): Add customerId to invoices graphql resolver
Browse files Browse the repository at this point in the history
  • Loading branch information
rsempe committed Aug 29, 2024
1 parent 28f3b46 commit 3092657
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
1 change: 1 addition & 0 deletions app/graphql/resolvers/invoices_resolver.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class InvoicesResolver < Resolvers::BaseResolver
description 'Query invoices'

argument :currency, Types::CurrencyEnum, required: false
argument :customer_id, ID, required: false, description: 'Uniq ID of the customer'
argument :customer_external_id, String, required: false
argument :invoice_type, [Types::Invoices::InvoiceTypeEnum], required: false
argument :issuing_date_from, GraphQL::Types::ISO8601Date, required: false
Expand Down
20 changes: 19 additions & 1 deletion schema.graphql

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3092657

Please sign in to comment.