This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
This is the HTML portion of the infinite scroll/pagination with Rails and AngularJS tutorial | |
Required libraries for the tutorial and indicated as "Important", | |
together with implementation specific libraries marked as "Optional" | |
--> | |
<!DOCTYPE html> | |
<html> | |
<title>Clips</title> | |
<!-- Important --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# a hack for `NodeA.objects.filter(nodeb__in=nodebnodes)` | |
from neo4django.db import connections | |
from neo4django.db.models.script_utils import LazyNode | |
# ... | |
b_nodes = set([...]) #your NodeB instances | |
b_node_ids = [b.id for b in b_nodes] | |
type_node_a = NodeA._type_node() |