Uses of Class
org.qubership.atp.ram.model.IssueDto
Packages that use IssueDto
-
Uses of IssueDto in org.qubership.atp.ram.repositories
Methods in org.qubership.atp.ram.repositories that return IssueDtoModifier and TypeMethodDescriptionCustomIssueRepository.getSortedAndPaginatedIssuesByFilters(IssueFilteringParams issueFilteringParams, String columnType, String sortType, int startIndex, int endIndex) -
Uses of IssueDto in org.qubership.atp.ram.repositories.impl
Methods in org.qubership.atp.ram.repositories.impl that return IssueDtoModifier and TypeMethodDescriptionCustomIssueRepositoryImpl.getSortedAndPaginatedIssuesByFilters(IssueFilteringParams issueFilteringParams, String columnType, String sortType, int startIndex, int endIndex) Example of generated query: db.issue.aggregate( [ { $match: { executionRequestId: executionRequestIdVar } }, { $match : { message : { $regex: /.*?message.*?/ } } }, { $match : { jiraTicket : { $regex: /.*?ATPII-1.*?/ } } }, * { $lookup: { from: "failPattern", localField: "failPatternId", foreignField: "_id", as: "failPattern" } }, { $unwind: { path: "$failPattern", preserveNullAndEmptyArrays: true } }, { $match : { "failPattern.name" : { $regex: /.*?fail pattern.*?/ } } }, { $lookup: { from: "rootCause", localField: "failReasonId", foreignField: "_id", as: "failReason" } }, { $unwind: { path: "$failReason", preserveNullAndEmptyArrays: true } }, { $match : { "failReason.name" : { $regex: /.*?fail reason.*?/ } } }, { $facet: { metadata: [ { $count: "totalCount" } ], data: [ { $skip: 5 }, { $limit: 5 } ] } } ] )