Manatee.Trello Limited to 50 labels in a board

165 Views Asked by At

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?

1

There are 1 best solutions below

0
On

As of version 1.17.0, I have added BoardLabelCollection.Filter(LabelColor) and BoardLabelCollection.Limit(int) to support this feature.