-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Query Work Items with dc:description #140
Comments
It seems
AFAIK, we can only filter those items after querying.
We can use query_str = 'dc:type="defect" and oslc:orderBY="dc:created"' Use the creating time of last item in the query results for later queries, such as, query_str = 'dc:type="defect" and dc:created>="12-02-2019T18:42:30" and oslc:orderBY="dc:created"' |
ah okay, thanks for your help! |
@joycelynteo Please try Let me know if this works. |
@joycelynteo Please checkout branch query-order to see whether it works. By default, the query results are sorted with descending order by last modified time. A new param
|
query_str = ('dc:type="defect"' and '"word" in dc:description')
Is there a way I can query work items that have a certain word in its description? Something like the line above. If it's not possible, is there a way to increase the query limit from 1000 because I would like more data for work items that have the word in the description.
The text was updated successfully, but these errors were encountered: