gitlab-org--gitlab-foss/app/graphql/types/timeframe_input_type.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
226 B
Ruby
Raw Normal View History

# 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