debian-mirror-gitlab/app/graphql/types/timeframe_input_type.rb
2021-04-17 20:07:23 +05:30

9 lines
226 B
Ruby

# frozen_string_literal: true
module Types
class TimeframeInputType < RangeInputType[::Types::DateType]
graphql_name 'Timeframe'
description 'A time-frame defined as a closed inclusive range of two dates'
end
end