Work Item Query Service - Inputs
Command type
Command type needs to be set to ‘Query’ and the command qualifier must be empty.
<Command type="Query"> <Workitem etype="Entity">
Query Directives
<MaxCount> can be specified to limit the number of work items returned, should more than one work item match the query.
<StartCount> can be specified to achieve windowing/pagination of a large result set. In combination with MaxCount, the caller can control which ‘page’ of the result set needs to be returned.
<Command type="Query"> <StartCount>30</StartCount> <MaxCount>10</MaxCount>
You can sort work items using the
<OrderByColumnList> query directive based on one or more columns in an ascending or descending order. Ensure that the repository column name must be prefixed with
#. For example,
<OrderByColumnList>#PHONENUMBER,ASC</OrderByColumnList> <OrderByColumnList>EVENTID,ASC:#PHONENUMBER,DESC</OrderByColumnList>
External Keys
The external keys are used to locate list of parameters and their valid values.
Copyright © Cloud Software Group, Inc. All rights reserved.