How should URLs with filters containing . characters be encoded?
#4437
-
|
I'm trying to filter on a floating point number. I expected the query to be something like: |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
@sproctor The above should be fine, after the
I do understand the confusion, on #2066 we discussed changing the operator to the left (like |
Beta Was this translation helpful? Give feedback.
-
|
Thank you so much for your response. Is there a clear way to handle In the current situation, how should a value be encoded? It seems like the simplest is to quote all |
Beta Was this translation helpful? Give feedback.
-
|
My solution was to do nothing unless the value is in a logical expression or |
Beta Was this translation helpful? Give feedback.
@sproctor The above should be fine, after the
.every char is accepted. There's an undocumented ABNF here:I do understand the confusion, on #2066 we discussed changing the operator to the left (like
/table?column.eq=0.25), which also has other advantages.