1

我试图使用 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);

4

1 回答 1

0

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

existUserStoryRequest.setProject("/project/" + projectOID);
于 2017-04-28T17:35:49.847 回答