stable

Clone or download

Read-only

feat: WITH|WITHOUT PARENT ARTIFACT

You can now search for artifacts that are children of a given artifact: `WITH PARENT ARTIFACT = 123` Or the ones that are not children of the artifact: `WITHOUT PARENT ARTIFACT = 123` Part of story #32281: Search artifacts with/without parents via TQL Change-Id: I913502037602e1385bfb29340a1e6772d23686f0

Modified Files

Name
M plugins/crosstracker/include/CrossTracker/REST/v1/CrossTrackerReportsResource.php +6 −2 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/CrossTrackerArtifactReportFactory.php +1 −1 Go to diff View file
A plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilder/ArtifactLink/ArtifactLinkFromWhereBuilder.php +89 −0 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilderVisitor.php +15 −44 Go to diff View file
M plugins/crosstracker/include/CrossTracker/Report/Query/Advanced/QueryBuilderVisitorParameters.php +2 −13 Go to diff View file
M plugins/crosstracker/include/crosstrackerPlugin.php +3 −1 Go to diff View file
M plugins/crosstracker/scripts/cross-tracker/src/writing-mode/tql-configuration.ts +4 −0 Go to diff View file
M plugins/crosstracker/tests/rest/CrossTracker/CrossTrackerTestExpertQueryTest.php +40 −0 Go to diff View file
M plugins/tracker/grammar/src/tql.pegjs +8 −4 Go to diff View file
M plugins/tracker/grammar/test_parser.php +1 −1 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/ParentArtifactCondition.php +30 −0 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/WithParent.php +4 −0 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/Grammar/WithoutParent.php +4 −0 Go to diff View file
A plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilder/ArtifactLink/ArtifactLinkFromWhereBuilder.php +76 −0 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilderParameters.php +2 −11 Go to diff View file
M plugins/tracker/include/Tracker/Report/Query/Advanced/QueryBuilderVisitor.php +15 −44 Go to diff View file
M plugins/tracker/include/Tracker/Report/Tracker_Report.class.php +3 −2 Go to diff View file
M plugins/tracker/scripts/lib/TQL-CodeMirror/src/configuration.ts +3 −1 Go to diff View file
M plugins/tracker/tests/rest/TQL/TQLTest.php +29 −7 Go to diff View file
M plugins/tracker/tests/unit/Tracker/Report/Query/Advanced/QueryBuilderVisitorTest.php +4 −2 Go to diff View file