springboot+nebula

{
    "code": -1009,
    "message": "SemanticError: Alias used but not defined: `player150'",
    "rowCount": 0,
    "latency": 264
}

controller中功能代码:

@GetMapping("/query_pattern_match")
    @ResponseBody
    public NebulaQueryResponse query_pattern_match(@RequestParam String uid) {
        String statement = String.format(
//                "MATCH (v1:Person)-[e:KNOWS]->(v2:Person) WHERE id(v1)==%s RETURN v2;", uid);

        "MATCH (v0:`player`) WHERE  ( id(v0)  == %s)  RETURN v0;",uid);
        return execute(statement);
    }

请问应该如何修改

用的 ngbatis?

此话题已在最后回复的 30 天后被自动关闭。不再允许新回复。