Data Kiosk graphql "start/end date" does not support "time" #4214
-
I have a valid rfc3339 time input for "start/end date" like the following: |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi @DearRude, |
Beta Was this translation helpful? Give feedback.
-
Hello @DearRude, The Schema Explorer should help clarify this. If you navigate to the right panel and select the Date model, you will find the date/time format specified. In this case, it is RFC 3339. RFC 3339 specifies a format for representing date and time, but it also allows for just the date part. This is highlighted in the example section. Currently, there are no datasets that provide data at an hour or minute granularity. The format remains RFC3339 but without the hours, minutes, and seconds values. You can see an example in the Schema Explorer:
This format is used in anticipation of future datasets that might include hour or minute granularity. I understand this can be a bit confusing, and we will work on highlighting this more clearly in the example section. Thanks for the feedback and please keep them coming so that we can improve your experience :) All the best, Chris |
Beta Was this translation helpful? Give feedback.
Hello @DearRude,
The Schema Explorer should help clarify this. If you navigate to the right panel and select the Date model, you will find the date/time format specified. In this case, it is RFC 3339.
RFC 3339 specifies a format for representing date and time, but it also allows for just the date part. This is highlighted in the example section.
Currently, there are no datasets that provide data at an hour or minute granularity. The format remains RFC3339 but without the hours, minutes, and seconds values. You can see an example in the Schema Explorer:
This format is used in anticipation of future datasets that might include …