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
I'd like to have a property that is filterable but have the name of the filterable property be different than the name of the column that backs the property. For example
type User struct {
FirstName string `json:"firstName" rql:"filter,name=firstName,column=first_name"`
}
So a filter like this
{
"filter": {
"firstName": "Bob"
}
}
produces
WHERE first_name="Bob"
I don't see support for this currently. Is that correct? If so, would doing this be that difficult? I don't know the codebase very well, but this could be really useful for my team using this library.
The text was updated successfully, but these errors were encountered:
I'd like to have a property that is filterable but have the name of the filterable property be different than the name of the column that backs the property. For example
So a filter like this
produces
WHERE first_name="Bob"
I don't see support for this currently. Is that correct? If so, would doing this be that difficult? I don't know the codebase very well, but this could be really useful for my team using this library.
The text was updated successfully, but these errors were encountered: