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
Seems like .filter is broken.
On relationship and on models, there are so many issues.
We should re-open issue #219, because #234 didn't resolve all the problems.
Sometimes it will simply not work, sometimes it will raise gremlin-related exception.
I Have:
from django.utils import timezone
now = timezone.now()
Being evstart and evend two datetime fields, and events a relationship to a Event model, this simple chain on a relationship shows no results:
There ARE event in the selected time period, this is sure.
The same filtering sometimes it works on Model instead of Relationship, but not always. With works I mean it gives expected results.
Furthermore, considering no .exclude is implemented ( #213), it's really hard to do something good. @mhluongo, I wish I could help, I imagine you don't have much time. The project seems a bit on its own without you ;)
The text was updated successfully, but these errors were encountered:
Seems like
.filter
is broken.On relationship and on models, there are so many issues.
We should re-open issue #219, because #234 didn't resolve all the problems.
Sometimes it will simply not work, sometimes it will raise gremlin-related exception.
I Have:
Being
evstart
andevend
twodatetime
fields, andevents
a relationship to aEvent
model, this simple chain on a relationship shows no results:Don't know why, but this one works:
while the following does not:
There ARE event in the selected time period, this is sure.
The same filtering sometimes it works on
Model
instead ofRelationship
, but not always. With works I mean it gives expected results.Furthermore, considering no
.exclude
is implemented ( #213), it's really hard to do something good.@mhluongo, I wish I could help, I imagine you don't have much time. The project seems a bit on its own without you ;)
The text was updated successfully, but these errors were encountered: