我只想知道是否可以使用水线选择特定字段,下面给出了orientdb查询.
e.g.
select phone from user
Run Code Online (Sandbox Code Playgroud)
我想通过使用此查询从用户顶点选择手机
userModel.find(phone)
.then(function(phonelist){
if(!phonelist)
console.log('msg: RECORD_NOT_FOUND');
else
console.log(phonelist);
.catch(function(err){ console.log('err: 'err'); });
Run Code Online (Sandbox Code Playgroud) 我想在OrientDB中使用Blueprints和Pipes.方法是什么?还有TinkerPop3或TinkerPop2?哪个对我的学习经历更好?