[
https://issues.apache.org/jira/browse/TINKERPOP-2456?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Stephen Mallette closed TINKERPOP-2456.
---------------------------------------
Fix Version/s: 4.0.0
3.7.2
Assignee: Stephen Mallette
Resolution: Done
Added tests here:
https://github.com/apache/tinkerpop/commit/804eeab95473c9dc80b916baa029e115665bc2f8
> Add missing tests for queries
> -----------------------------
>
> Key: TINKERPOP-2456
> URL: https://issues.apache.org/jira/browse/TINKERPOP-2456
> Project: TinkerPop
> Issue Type: Improvement
> Components: test-suite
> Affects Versions: 3.4.8
> Reporter: Divij Vaidya
> Assignee: Stephen Mallette
> Priority: Minor
> Fix For: 4.0.0, 3.7.2
>
>
> Some queries are not covered by our test suite. Here are a couple of
> examples. Note that all examples operate on Modern graph.
> 1. g.V().properties("age").order().by(T.id)
> 2. g.V().aggregate("a").has("person","age",
> P.gte(8)).cap("a").unfold().valueMap()
> 3.
> g.V().hasLabel("person").as("foo").where(__.outE("knows").count().is(P.gte(0))).select("foo")
> 4. g.V().properties().dedup()
> 5. g.V().project("id",
> "project").by(T.id).by(__.project("label").by(out().id().fold()).fold()
> 6. g.V().limit(3).addV("testLabel") .aggregate("a1").by(T.label)
> .aggregate("a2").by(T.label) .cap("a1", "a2");
> 7. g.V().as("a").path().by(T.id).as("path").project("a").by(identity())
> 8. g.V().group().by(label).count()
--
This message was sent by Atlassian Jira
(v8.20.10#820010)