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

Fix in & not filters #36

Merged
merged 3 commits into from
Nov 3, 2023
Merged

Fix in & not filters #36

merged 3 commits into from
Nov 3, 2023

Conversation

drkameleon
Copy link
Contributor

Right now, none of the queries below work as expected.

Find all people whose birthday (year) is either 1960 or 1980:

person [
    birthday: -> in: [1960, 1980]
]

Find all people whose birthday (year) is between 1960 and 1965: (how neat does this look!)

person [
    birthday: -> in: 1960..1965
]

Find all people whose birthday (year) is neither 1970 nor 1974:

person [
    birthday: -> not: [1970, 1974]
]

@drkameleon drkameleon self-assigned this Nov 3, 2023
@drkameleon drkameleon added bug Something isn't working engine Issues related the Grafito database engine labels Nov 3, 2023
@drkameleon
Copy link
Contributor Author

Ready to merge! 🚀

@drkameleon drkameleon merged commit e989036 into main Nov 3, 2023
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working engine Issues related the Grafito database engine
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant