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 e5f08db commit 80d2554Copy full SHA for 80d2554
labelbox/schema/project.py
@@ -69,6 +69,15 @@ def create_label(self, **kwargs):
69
return Label(self.client, res["createLabel"])
70
71
def labels(self, datasets=None, order_by=None):
72
+ """
73
+ Custom relationship expansion method to support limited filtering.
74
+
75
+ Args:
76
+ datasets (iterable of Dataset): Optional collection of Datasets
77
+ whose Labels are sought. If not provided, all Labels in
78
+ this Project are returned.
79
+ order_by (None or (Field, Field.Order)): Ordering clause.
80
81
Label = Entity.Label
82
83
if datasets is not None:
0 commit comments