From e220e293d88cee127c7c494934e4f9e095f9246d Mon Sep 17 00:00:00 2001 From: Alex Wolf Date: Wed, 27 Sep 2023 19:52:15 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Add=20a=20members=20property=20t?= =?UTF-8?q?o=20FeatureSet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lnschema_core/models.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lnschema_core/models.py b/lnschema_core/models.py index 0161e9ba..3e5db891 100644 --- a/lnschema_core/models.py +++ b/lnschema_core/models.py @@ -1279,6 +1279,11 @@ def save(self, *args, **kwargs) -> None: """Save.""" pass + @property + def members(self) -> "QuerySet": + """A queryset for the individual records of the set.""" + pass + class File(Registry, Data): """Files: immutable data batches.