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

GET api/metadata/lineage/vertices/all

Description

Get all vertices.

Parameters

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

Results

All vertices in lineage graph.

Examples

Rest Call

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

Result

{
    "results": [
        {
            "timestamp":"2014-04-21T20:55Z",
            "name":"sampleIngestProcess\/2014-03-01T10:00Z",
            "type":"process-instance",
            "version":"2.0.0",
            "_id":4,
            "_type":"vertex"
        },
        {
            "timestamp":"2014-04-21T20:55Z",
            "name":"rawEmailFeed\/2014-03-01T10:00Z",
            "type":"feed-instance",
            "_id":8,
            "_type":"vertex"
        }
    ],
    "totalSize": 2
}