concrete-datastore icon indicating copy to clipboard operation
concrete-datastore copied to clipboard

Allow micoseconds for datetime filters

Open KhaledBousrih opened this issue 3 years ago • 0 comments

Currently, the datetime filters only accept these two formats:

  • YYYY-MM-DD
  • YYYY-MM-DDTHH:mm:ssZ

We should be able to also accept the format with the microseconds YYYY-MM-DDTHH:mm:ss.xxxxxxZ with at most 6 digits for microseconds (regex: r'^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d{1,6})?Z$')

KhaledBousrih avatar Feb 24 '22 17:02 KhaledBousrih