2

Is it possible to sort GroupWise messages with the object API?

I know about filters and queries, however I couldn't find any sorting operators for filter and query expressions.

Mike Borozdin
  • 1,138
  • 3
  • 14
  • 32

1 Answers1

0

You would have to use a cursor from what I can tell (short of loading everything).

<?php

/* $this is a class that extends SoapClient using the groupwise.wsdl */
$q = (object)[
    'folderType' => 'Mailbox',
    'view' => 'count unreadCount'
];

$folder = $this->getFolderRequest($q);

$q = (object)[
    'container' => $folder->folder->id,
    'view' => 'subject peek noDownload'
];

$cursor = $this->createCursorRequest($q);

$q = (object)[
    'container' => $data->folder->id,
    'cursor' => $cursor->cursor,
    'position' => 'end',
    'count' => 20,
    'forward' => TRUE
];

$msgs = $this->readCursorRequest($q);

var_dump($msgs);

/* You could also throw readCursorRequest() in a loop and track offset + position for more intensive purposes */
?>

More reading: https://www.novell.com/documentation/developer/groupwise_sdk/gwsdk_gwwebservices/data/b7m3i3x.html

thinice
  • 700
  • 5
  • 19