-
Is there a way to tune the API to only allow filtering on certain fields and operators? |
Beta Was this translation helpful? Give feedback.
Answered by
zeevo
Dec 26, 2023
Replies: 1 comment 7 replies
-
You can manage access to certain fields by granting/revoking permissions from the columns, e.g. for a -- grant select only on id,username to "admin" user
revoke all on users from admin;
grant select (id,username) on users to admin; You can access those columns using curl "localhost:3000/todos?select=id,username On the other hand, there is no way to allow/block certain operators for now. This is discussed here: #2805 |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is this related to #2442 ?