Hello,

I'm trying to implement a TimeSeries based on the tutorial. I'm new to 
OrientDB.

My vertices are Month (Edge Days) > Day (Edges Logs) > Log > User.

I'm able to display all logs for a specific month and day with:

select expand(out('Days').out('Events')) from Month where Value = 2

but now i would like to filter to display only Logs from Day 10 and 11.

I'm able to apply a filter out('Days)[Value = 10] but with 2 filters and 
unionall() i can't.

here is my query:
select expand(e) from ( select unionall( out('Days')[value = 
10].out('Events'), out('Days')[value = 11].out('Events') ) as e from Month 
where Value = 2 )

Is there something wrong in my query ? or my logic is totally wrong ?

Thank you!

-- 

--- 
You received this message because you are subscribed to the Google Groups 
"OrientDB" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to