Go to: Synopsis. Flags. Return value. Keywords. Related. MEL examples.

Synopsis

dgInfo [-allNodes] [-connections] [-dirty boolean] [-nodes] [-nonDeletable] [-outputFile string] [-propagation boolean] [-short] [-subgraph] [-type string]

dgInfo is undoable, queryable, and editable.

This command prints information about the DG in a text-oriented manner. The scope of the information printed is the entire graph if the -all flag is used, the nodes/plugs on the command line if they were specified, and the selection list, in that order.

Flags

allNodes, connections, dirty, nodes, nonDeletable, outputFile, propagation, short, subgraph, type
Long name (short name) [argument types] Properties
-connections(-c) createqueryedit
Print the connection information

In query mode, this flag needs a value.

-nodes(-n) createqueryedit
Print the specified nodes (or the entire graph if -all is used)

In query mode, this flag needs a value.

-subgraph(-sub) createqueryedit
Print the subgraph affected by the node or plugs (or all nodes in the graph grouped in subgraphs if -all is used)

In query mode, this flag needs a value.

-allNodes(-all) createqueryedit
Use the entire graph as the context

In query mode, this flag needs a value.

-short(-s) createqueryedit
Print using short format instead of long

In query mode, this flag needs a value.

-dirty(-d) boolean createqueryedit
Only print dirty/clean nodes/plugs/connections. Default is both

In query mode, this flag needs a value.

-propagation(-p) boolean createqueryedit
Only print propagating/not propagating nodes/plugs/connections. Default is both.

In query mode, this flag needs a value.

-nonDeletable(-nd) createqueryedit
Include non-deletable nodes as well (normally not of interest)

In query mode, this flag needs a value.

-type(-nt) string createqueryedit
Filter output to only show nodes of type NODETYPE

In query mode, this flag needs a value.

-outputFile(-of) string createqueryedit
Send the output to the file FILE instead of STDERR

In query mode, this flag needs a value.


Flag can appear in Create mode of command Flag can appear in Edit mode of command
Flag can appear in Query mode of command Flag can be used more than once in a command

Return value


[none]

Keywords

debug, dependency, graph, node, output, connection

Related

dgPerformance, dgdebug, dgdirty, dgeval, dgfootprint, dgstats

MEL examples

// create a node
createNode -n NODE transform;
setKeyframe NODE.translate;
// Print all things connected to node NODE
dgInfo -c NODE;
// Print all connections currently in the graph
dgInfo -c -all;
// Print all connections to attribute tx on node NODE
dgInfo -c NODE.tx
// Print all dirty connections in the entire graph
dgInfo -c -all -d on;