It iterates.

Sorry, couldn't resist.  ;-)

-----Original Message-----
From: user-boun...@lists.neo4j.org [mailto:user-boun...@lists.neo4j.org] On 
Behalf Of Alfredas Chmieliauskas
Sent: Thursday, November 17, 2011 12:31 PM
To: Neo4j user discussions
Subject: Re: [Neo4j] Gremlin plugin and script engine question

Thanks!

What exactly does iterate() do?

A

On Thu, Nov 17, 2011 at 4:07 PM, Marko Rodriguez <okramma...@gmail.com> wrote:
> Hey Alfredas,
>
> Be sure to iterate your pipeline....
>
>        x = []; g.v(1).out("from").out("to").aggregate(x).loop(3){it.loops < 
> 4}.iterate(); x
>
> * NOTE: You can also do:
>        g.v(1).out("from").out("to").aggregate(x).loop(3){it.loops < 4} >>-1
>   but the >> convention is no longer with us in Gremlin 1.4-SNAPSHOT.
>
> HTH,
> Marko.
>
> http://markorodriguez.com
>
> On Nov 17, 2011, at 7:21 AM, Alfredas Chmieliauskas wrote:
>
>> Dear all,
>> This concerns gremlin plugin and the script engine.
>> Maybe there's an explanation for this behavior:
>> 1) gremlin> x = [];
>> g.v(1).out("from").out("to").aggregate(x).loop(3){it.loops < 4};
>>     gremlin> x;
>>
>> ==> v[7]
>> ==> v[3]
>> ==> v[5]
>>
>> 2) gremlin> x = [];
>> g.v(1).out("from").out("to").aggregate(x).loop(3){it.loops < 4}; x;
>> returns nothing...
>>
>> Thanks,
>>
>> Alfredas
>> _______________________________________________
>> Neo4j mailing list
>> User@lists.neo4j.org
>> https://lists.neo4j.org/mailman/listinfo/user
>
> _______________________________________________
> Neo4j mailing list
> User@lists.neo4j.org
> https://lists.neo4j.org/mailman/listinfo/user
>
_______________________________________________
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user
_______________________________________________
Neo4j mailing list
User@lists.neo4j.org
https://lists.neo4j.org/mailman/listinfo/user

Reply via email to