We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, Since datetime are not yet supported, I'm using a single text parameter to get a datetime as text, that I will then cast in my function.
"datetime" values look like "2022-06-13T12:00:00+00:00"
When setting such a value from the UI, it is apparently not URL-encoded, and results in a failure.
Changing the + by %2B makes it work
+
%2B
The text was updated successfully, but these errors were encountered:
Yes, this is a bug, and should have a simple fix.
Note that temporal queries are supported via CQL (see doc).
Sorry, something went wrong.
Wow, CQL filters, nice ! Thanks for pointing this out
No branches or pull requests
Hi,
Since datetime are not yet supported, I'm using a single text parameter to get a datetime as text, that I will then cast in my function.
"datetime" values look like "2022-06-13T12:00:00+00:00"
When setting such a value from the UI, it is apparently not URL-encoded, and results in a failure.
Changing the
+
by%2B
makes it workThe text was updated successfully, but these errors were encountered: