We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc4e488 commit f83d7b4Copy full SHA for f83d7b4
django_postgresql_dag/models.py
@@ -374,6 +374,20 @@ def clan_edges(self):
374
"""
375
return self.ancestors_edges() | self.descendants_edges()
376
377
+ def parent_edges(self):
378
+ return edge_model.objects.filter(
379
+ child__in=[
380
+ self,
381
+ ],
382
+ )
383
+
384
+ def child_edges(self):
385
386
+ parent__in=[
387
388
389
390
391
@staticmethod
392
def circular_checker(parent, child):
393
if child in parent.self_and_ancestors():
setup.py
@@ -3,7 +3,7 @@
3
import os
4
from setuptools import setup
5
6
-version = '0.1.4'
+version = '0.1.5'
7
8
classifiers = [
9
"Development Status :: 3 - Alpha",
0 commit comments