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?
As of version 1.17.0, I have added
BoardLabelCollection.Filter(LabelColor)
andBoardLabelCollection.Limit(int)
to support this feature.