Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Как работает метод filter() #125

Open
zlayafugu opened this issue Jun 6, 2024 · 3 comments
Open

Как работает метод filter() #125

zlayafugu opened this issue Jun 6, 2024 · 3 comments

Comments

@zlayafugu
Copy link

Не понимаю, как фильтровать Лиды используя метод filter
При запросе Lead.objects.filter({'id': 20749477}) ничего не возвращается

@denis313
Copy link

denis313 commented Aug 12, 2024

Не понимаю, как фильтровать Лиды используя метод filter При запросе Lead.objects.filter({'id': 20749477}) ничего не возвращается

Получилось разобраться как работает фильтр?

@BogdanSubm
Copy link

Лично я делал через SingleFilter. В вашем случае у меня работало бы так:

Lead.objects.filter(filters=[SingleFilter("id")(20749477)])

Не понимаю, как фильтровать Лиды используя метод filter При запросе Lead.objects.filter({'id': 20749477}) ничего не возвращается

@BogdanSubm
Copy link

Другая проблема, что это не работает для loss_reason_id и я не знаю, что с этим делать

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants