summaryrefslogtreecommitdiff
path: root/app/graphql/types/range_input_type.rb
blob: 766e523a99edf331dd4dbe1732f83562047cf92e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  class RangeInputType < BaseInputObject
    def self.[](type, closed = true)
      @subtypes ||= {}

      @subtypes[[type, closed]] ||= Class.new(self) do
        argument :start, type,
                 required: closed,
                 description: 'The start of the range'

        argument :end, type,
                 required: closed,
                 description: 'The end of the range'
      end
    end

    def prepare
      if self[:end] && self[:start] && self[:end] < self[:start]
        raise ::Gitlab::Graphql::Errors::ArgumentError, 'start must be before end'
      end

      to_h
    end
  end
  # rubocop: enable Graphql/AuthorizeTypes
end