getDependencyGraph
GET
/api/v1/plugins/dependency-graph
const url = 'https://example.com/api/v1/plugins/dependency-graph';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/plugins/dependency-graphReturns the current content and delivery topology. Directed edges run from a dependency to the record that consumes it. Dependency Graph is a Studio system tool, not an installable plugin.
Responses
Section titled “ Responses ”Typed dependency nodes and directed consumer edges
Media typeapplication/json
object
data
required
object
nodes
required
Array<object>
object
id
required
string format: uuid
type
required
name
required
string
edges
required
Array<object>
object
fromType
required
fromId
required
string format: uuid
toType
required
toId
required
string format: uuid
relationship
required
string
Example
{ "data": { "nodes": [ { "type": "data_source" } ], "edges": [ { "fromType": "data_source", "toType": "data_source" } ] }}