Martijn Dwars created TINKERPOP-2198:
----------------------------------------
Summary: Documentation for Store contradicts itself
Key: TINKERPOP-2198
URL: https://issues.apache.org/jira/browse/TINKERPOP-2198
Project: TinkerPop
Issue Type: Bug
Reporter: Martijn Dwars
The [Store Step|http://tinkerpop.apache.org/docs/current/reference/#store-step]
shows the following example:
{{gremlin> g.V().store('x').limit(1).cap('x')}}
{{==>[v[1]]}}
and continues with the following explanation:
{quote}It is interesting to note that there are two results in the {{store()}}
side-effect even though the interval selection is for 1 object. Realize that
when the second object is on its way to the {{range()}} filter (i.e.
{{[0..1]}}), it passes through {{store()}} and thus, stored before filtered.
{quote}
The problem is that the example does _not_ show this lazy behavior. The correct
output would be:
{{==>[v[1], v[2]]}}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)