Hi Jayaraj, We are working to make things easier and more coherent in OrientDB. Some "non-regular" behavior that worked in the past couldn't work anymore with recent version. For example you shouldn't never use
select out_friends.name from user But rather the out() function. If we'll change the underlying implementation, if you use functions you're always safe. But if you work with fields you could have such problems. About the query "Select * from customer where is_deleted = 0" Best Regards, Luca Garulli Founder & CEO OrientDB <http://orientdb.com/> On 9 January 2016 at 07:04, jaya raj <[email protected]> wrote: > Hi luca, > > > I get an error with such query in version 2.2.0 > > i am using http API. > > 1. Select * from customer where is_deleted = 0 (not working) > > Select * from customer where is_deleted = false (working) > > 2. select out_friends.name from user > > - the above query working in ver 1.7.2 and 2.2.0 but after migration > insert new record it should not work properly, then i can change the above > query like this it is working. > > select out('friends')[0].name from user > > regards, > Jayaraj > > > > > > On Friday, January 8, 2016 at 6:46:47 PM UTC+5:30, l.garulli wrote: >> >> What problem do you have? >> >> Best Regards, >> >> Luca Garulli >> Founder & CEO >> OrientDB <http://orientdb.com/> >> >> >> On 8 January 2016 at 12:11, jaya raj <[email protected]> wrote: >> >>> HI, >>> >>> I am struggling orientdb to migrate 1.7.2 to 2.2.0 lightweight >>> edges problem, i already written query was need to change the new version >>> support. >>> >>> >>> >>> >>> regards, >>> Jayaraj >>> >>> -- >>> >>> --- >>> 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/d/optout. >>> >> >> -- > > --- > 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/d/optout. > -- --- 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/d/optout.
