2

I'm getting a list of cases fro the FogBugz API and the OrderBy clause is 'case'. This is getting the first X items I request, where I want to get the last X items. How can I change the direction of the order by?

I've tried:

OrderByDir:desc
OrderBy:case desc
balexandre
  • 73,608
  • 45
  • 233
  • 342
David
  • 320
  • 1
  • 6
  • 22

1 Answers1

2

It's the non-obvious:

orderby:"-case"
Rich Armstrong
  • 1,432
  • 2
  • 16
  • 20