On this page

Show all

Executing Gremlin Queries

Updated on 2022-09-14 GMT+08:00

You can use a specific API provided by GES to perform Gremlin queries. The sample code is as follows:

NOTE:

During graph client initialization, an object with the same name as the graph has been generated in the system. You can use the graph name to query the object.

  public static void executeGremlinQuery(GraphClient graphClient,String graphName) throws ApiException
{   //Gremlin command. An object with the same name as the graph is generated in the system during graph client initialization. You can directly use it as follows:
     String gremlinCommand = graphName + ".V(\"145\")";
     GremlinQueryReq req = new GremlinQueryReq();
     req.setCommand(gremlinCommand);
     Map<String, Object> stringObjectMap = graphClient.gremlinQuery(req);
     System.out.print(MapUtils.map2json(stringObjectMap));
}
Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback