You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the process of creating the Not shorthand methods, I've noticed that some of the filter requests are not necessarily being formed correctly. For instance, contains and includes while similar in functionality, require different request formatting.
Interestingly, attempting to use the contains operator gives me an error:
{
"hint": "No operator matches the given name and argument types. You might need to add explicit type casts.",
"details": null,
"code": "42883",
"message": "operator does not exist: text @> unknown"
}
As though postgrest doesn't know how to use it's own operator?
Chore
Describe the chore
In the process of creating the
Not
shorthand methods, I've noticed that some of the filter requests are not necessarily being formed correctly. For instance,contains
andincludes
while similar in functionality, require different request formatting.Per filter tests will be required based off of: http://postgrest.org/en/v7.0.0/api.html#operators
The text was updated successfully, but these errors were encountered: