Closed EmilStenstrom closed 5 years ago
Idea: Use an API that is similar to Django's, where you can write data.filter(id__gt=3) and get all nodes with an ID greater than 3. data.filter(form="the", head=2) would return all nodes with both of those properties set.
data.filter(id__gt=3)
data.filter(form="the", head=2)
Fixed in c35ad9d261c950948679930adecb565ff632c750.
Idea: Use an API that is similar to Django's, where you can write
data.filter(id__gt=3)
and get all nodes with an ID greater than 3.data.filter(form="the", head=2)
would return all nodes with both of those properties set.