Reputation: 1
I am getting back all of the labels for a board and I guess we are hitting up against some limit now.
var board = new Board(boardString);
foreach (var label in board.Labels.ToList().OrderBy(x => x.Name))
{
Console.WriteLine(label.Name + " " + label.Id);
}
We have over 50 labels now and no dice? Any ideas?
Upvotes: 0
Views: 157
Reputation: 8428
As of version 1.17.0, I have added BoardLabelCollection.Filter(LabelColor)
and BoardLabelCollection.Limit(int)
to support this feature.
Upvotes: 0