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