Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/time_type.rb')
-rw-r--r--app/graphql/types/time_type.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/graphql/types/time_type.rb b/app/graphql/types/time_type.rb
index c31e4873df0..2db14953308 100644
--- a/app/graphql/types/time_type.rb
+++ b/app/graphql/types/time_type.rb
@@ -3,7 +3,13 @@
module Types
class TimeType < BaseScalar
graphql_name 'Time'
- description 'Time represented in ISO 8601'
+ description <<~DESC
+ Time represented in ISO 8601.
+
+ For example: "2021-03-09T14:58:50+00:00".
+
+ See `https://www.iso.org/iso-8601-date-and-time-format.html`.
+ DESC
def self.coerce_input(value, ctx)
Time.parse(value)