debian-mirror-gitlab/app/graphql/resolvers/data_transfer/data_transfer_arguments.rb

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

20 lines
509 B
Ruby
Raw Normal View History

2023-06-20 00:43:36 +05:30
# frozen_string_literal: true
module Resolvers
module DataTransfer
module DataTransferArguments
extend ActiveSupport::Concern
included do
argument :from, Types::DateType,
description:
'Retain egress data for one year. Data for the current month will increase dynamically as egress occurs.',
required: false
argument :to, Types::DateType,
description: 'End date for the data.',
required: false
end
end
end
end