This project has retired. For details please refer to its Attic page.
Falcon - GET pi/metadata/lineage//edges/all

GET pi/metadata/lineage//edges/all

Description

Get all edges.

Parameters

  • doAs <optional query param> allows the current user to impersonate the user passed in doAs when interacting with the Falcon system.

Results

All edges in lineage graph.

Examples

Rest Call

GET http://localhost:15000/api/metadata/lineage/edges/all?doAs=joe

Result

{
    "results": [
        {
            "_id":"Q5V-4-5g",
            "_type":"edge",
            "_outV":4,
            "_inV":8,
            "_label":"output"
        },
        {
            "_id":"Q6t-c-5g",
            "_type":"edge",
            "_outV":12,
            "_inV":16,
            "_label":"output"
        }
    ],
    "totalSize": 2
}