@RestController @RequestMapping(value="/datasource/graph") public class GraphDatabaseController extends Object
| Constructor and Description |
|---|
GraphDatabaseController() |
| Modifier and Type | Method and Description |
|---|---|
com.geoway.adf.dms.common.web.Response<GraphDatabaseDetailDTO> |
getDetail(String dsKey,
Boolean withLabelAliasName) |
com.geoway.adf.dms.common.web.Response<DatabaseQueryResultDTO> |
queryLabel(String dsKey,
String type,
Integer limit,
String keyword) |
com.geoway.adf.dms.common.web.Response<DatabaseQueryResultDTO> |
queryRelation(String dsKey,
String type,
Integer limit) |
@GetMapping(value="/detail") public com.geoway.adf.dms.common.web.Response<GraphDatabaseDetailDTO> getDetail(@RequestParam String dsKey, @RequestParam(required=false) Boolean withLabelAliasName)
@GetMapping(value="/label") public com.geoway.adf.dms.common.web.Response<DatabaseQueryResultDTO> queryLabel(@RequestParam String dsKey, @RequestParam(required=false) String type, @RequestParam(required=false,defaultValue="25") Integer limit, @RequestParam(required=false) String keyword)
@GetMapping(value="/relation") public com.geoway.adf.dms.common.web.Response<DatabaseQueryResultDTO> queryRelation(@RequestParam String dsKey, @RequestParam(required=false) String type, @RequestParam(required=false,defaultValue="25") Integer limit)
Copyright © 2025. All rights reserved.