Search query question

Hello all,

It looks like the generic search query:

my $tickets = new RT::Tickets($RT::SystemUser);

Only works if you introduce some limitations to it. By that I mean
qualifiers like:

$tickets->LimitStatus(VALUE => ‘open’);

Is there any way to launch it and find all the tickets? And yes, I know -
this may be expensive but that is fine.

Thanks in advance for any advice.

Cheers,

Boris.

Is there any way to launch it and find all the tickets? And yes, I know

  • this may be expensive but that is fine.

$tickets->UnLimit;

  • Alex

Alex, thanks!

Here’s another solution I just found:

$tickets->LimitId(OPERATOR => ‘>’,
VALUE => ‘0’);

Boris.On Tue, Jul 29, 2014 at 3:35 PM, Alex Vandiver alexmv@bestpractical.com wrote:

On 07/29/2014 03:17 PM, Boris Epstein wrote:

Is there any way to launch it and find all the tickets? And yes, I know

  • this may be expensive but that is fine.

$tickets->UnLimit;

  • Alex