我试图使用java工具包从父项目中读取所有用户故事(包括子项目用户故事)。但是它不能阅读所有用户故事

以下是我的代码段
QueryRequest existUserStoryRequest = new QueryRequest("HierarchicalRequirement"); existUserStoryRequest.setFetch(new Fetch(new String [] {"FormattedID","Name","Attachments"})); existUserStoryRequest.setProject(projectOID); existUserStoryRequest.setScopedDown(true); existUserStoryRequest.setLimit(3000); existUserStoryRequest.setScopedUp(true); QueryResponse userStoryQueryResponse = restApi.query(existUserStoryRequest);

最佳答案

您有任何错误吗?问题的一部分可能与您设置作用域的方式有关-它需要是ref而不是oid ...

existUserStoryRequest.setProject("/project/" + projectOID);

08-08 00:58