Ben Edwards
Ben Edwards

Reputation: 1

Manatee.Trello Limited to 50 labels in a board

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

Answers (1)

gregsdennis
gregsdennis

Reputation: 8428

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

Upvotes: 0

Related Questions