Deze pagina is nog niet beschikbaar in uw eigen taal. We werken er hard aan om meer taalversies toe te voegen. Bedankt voor uw steun.

On this page

Show all

Exporting a Graph

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

You can use a specific API provided by GES to export graph data. The sample code is as follows:

public static void exportGraph(GraphClient graphClient) throws ApiException 
{   
ExportGraphReq exportGraphReq = new ExportGraphReq();                            exportGraphReq.setGraphName(graphInfo.getGraphName());     
exportGraphReq.setEdgeSetName("movie-edge.csv");     
exportGraphReq.setVertexSetName("movie-vertex.csv");     
exportGraphReq.setSchemaName("movie-schema.csv"); 
exportGraphReq.setGraphExportPath("imagebucket/movie/");       
ObsParameters obsParameters = new ObsParameters();     
obsParameters.setAccessKey("***);
obsParameters.setSecretKey("***");     
obsParameters.setRegion("cn-hk1");     
exportGraphReq.setObsParameters(obsParameters);     
graphClient.exportGraph(exportGraphReq);
}
Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback