Di Xu
Di Xu
That's awesome. Thanks.
@afaucon If the query had already been save, you can still use and execute that query. > Let's say we are May 27th, and I wan to execute a query...
@MohebaIbu Any other detailed logs/errors?
> 2021-03-17 09:38:59,813 ERROR client.RTCClient: Failed POST request at https://jazz/ccm/oslc/contexts/_CFggASER45RFVerfksiwkm/workitems/bugv2.0 with response: b'\r\n409\r\nIllegal value: \r\n' From above error, it seems some fields had been set illegally. @MohebaIbu You can try...
> I have set it to True only as you can see in the log > 2021-03-17 09:38:59,813 ERROR client.RTCClient: Failed POST request at https://jazz/ccm/oslc/contexts/_CFggASER45RFVerfksiwkm/workitems/bugv2.0 with response: b'\r\n409\r\nIllegal value: \r\n'...
> To find the parents is rather easy: "dc:type=''story". The tricky part is finding the children of type 'task' and I'm a bit lost there Seems impossible. If you can...
> query_str = ('dc:type="defect"' and '"word" in dc:description') It seems `'"word" in dc:description'` is not supported, refer to [the query syntax](https://rtcclient.readthedocs.io/en/latest/advanced_usage.html#query-syntax-2) for more details, ``` query ::= (term (boolean_op term)*)+...
@joycelynteo Please try `query_str = 'dc:type="defect" and oslc:orderBY="dc:created"'`. Let me know if this works.
@joycelynteo Please checkout [branch query-order](https://github.com/dixudx/rtcclient/tree/query-order) to see whether it works. By default, the query results are sorted with descending order by last modified time. A new param `order_by` is added...
> is that possible to get the Git commit just like getting RTC change sets via this API? @LusongHou i guess it is is feasible. But currently I don't have...