This project has retired. For details please refer to its Attic page.
Falcon - GET api/metadata/lineage/vertices?key=:key&value=:value

GET api/metadata/lineage/vertices?key=:key&value=:value

Description

Get all vertices for a key index given the specified value.

Parameters

  • :key is the key to be matched.
  • :value is the associated value of the key.
  • doAs <optional query param> allows the current user to impersonate the user passed in doAs when interacting with the Falcon system.

Results

All vertices matching given property key and a value.

Examples

Rest Call

GET http://localhost:15000/api/metadata/lineage/vertices?key=name&value=sampleIngestProcess&doAs=joe

Result

{
    "results": [
        {
            "timestamp":"2014-04-21T20:55Z",
            "name":"sampleIngestProcess",
            "type":"process-instance",
            "version":"2.0.0",
            "_id":4,
            "_type":"vertex"
        }
    ],
    "totalSize": 1
}