Skip to content

Commit

Permalink
mics(graph) change type name
Browse files Browse the repository at this point in the history
  • Loading branch information
ansmonjol committed Mar 7, 2024
1 parent 58e55b4 commit f344f74
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 65 deletions.
1 change: 1 addition & 0 deletions app/graphql/types/billable_metric_filters/input.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
module Types
module BillableMetricFilters
class Input < BaseInputObject
graphql_name 'BillableMetricFiltersInput'
description 'Billable metric filters input arguments'

argument :key, String, required: true
Expand Down
20 changes: 10 additions & 10 deletions schema.graphql

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

106 changes: 53 additions & 53 deletions schema.json

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

2 changes: 1 addition & 1 deletion spec/graphql/types/billable_metrics/create_input_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
it { is_expected.to accept_argument(:name).of_type('String!') }
it { is_expected.to accept_argument(:recurring).of_type('Boolean') }
it { is_expected.to accept_argument(:weighted_interval).of_type('WeightedIntervalEnum') }
it { is_expected.to accept_argument(:filters).of_type('[Input!]') }
it { is_expected.to accept_argument(:filters).of_type('[BillableMetricFiltersInput!]') }
it { is_expected.to accept_argument(:group).of_type('JSON') }
end
2 changes: 1 addition & 1 deletion spec/graphql/types/billable_metrics/update_input_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
it { is_expected.to accept_argument(:name).of_type('String!') }
it { is_expected.to accept_argument(:recurring).of_type('Boolean') }
it { is_expected.to accept_argument(:weighted_interval).of_type('WeightedIntervalEnum') }
it { is_expected.to accept_argument(:filters).of_type('[Input!]') }
it { is_expected.to accept_argument(:filters).of_type('[BillableMetricFiltersInput!]') }
it { is_expected.to accept_argument(:group).of_type('JSON') }
end

0 comments on commit f344f74

Please sign in to comment.