@RestController
@RequestMapping(value="/servers/{serverName}/open-metadata/open-lineage/users/{userId}")
public class OpenLineageResource
extends Object
| Constructor and Description |
|---|
OpenLineageResource() |
| Modifier and Type | Method and Description |
|---|---|
LineageVertexResponse |
getEntityDetails(String serverName,
String userId,
String guid)
Gets entity details.
|
LineageResponse |
lineage(String serverName,
String userId,
String guid,
LineageQueryParameters params)
Returns the graph that the user will initially see when querying lineage.
|
@PostMapping(path="/lineage/entities/{guid}",
produces="application/json")
public LineageResponse lineage(@PathVariable(value="serverName")
String serverName,
@PathVariable(value="userId")
String userId,
@PathVariable(value="guid")
String guid,
@RequestBody
LineageQueryParameters params)
userId - calling user.serverName - name of the server instance to connect to.params - @GetMapping(path="/lineage/entities/{guid}/details",
produces="application/json")
public LineageVertexResponse getEntityDetails(@PathVariable(value="serverName")
String serverName,
@PathVariable(value="userId")
String userId,
@PathVariable(value="guid")
String guid)
serverName - the server nameuserId - the user idguid - the guidCopyright © 2018–2021 LF AI & Data Foundation. All rights reserved.