为了获得所有可以使用RDP的用户,我使用以下
joystick.beginHandler = { [unowned self] in
let walkAnimation: SKAction = SKAction(named: ".sks")!
self.thePlayer.run(SKAction.repeatForever(walkAnimation), withKey: "animating")
}
joystick.stopHandler = { [unowned self] in
self.thePlayer.removeAction(forKey: "animating")
}
我的问题是我该如何否定它以获取不能RDP的用户列表,并将其与以下查询合并以带来不能RDP的用户
MATCH p=()-[r:CanRDP]->() RETURN p LIMIT 25