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
class Constants(Filter.Constants):
model = ReviewAchievement
`
If I open the filter used endpoint like: http://127.0.0.1:8000/endpoint?price__gte=
return this error: {"errors":[{"type":"int_parsing","loc":["query","price__gte"],"msg":"Input should be a valid integer, unable to parse string as an integer","input":""}]}
The text was updated successfully, but these errors were encountered:
`
class UserAchievementFilter(Filter):
price__gte: Optional[int] = None
price__lte: Optional[int] = None
search: Optional[str] = None
`
If I open the filter used endpoint like: http://127.0.0.1:8000/endpoint?price__gte=
return this error:
{"errors":[{"type":"int_parsing","loc":["query","price__gte"],"msg":"Input should be a valid integer, unable to parse string as an integer","input":""}]}
The text was updated successfully, but these errors were encountered: