interface CallContextQuerySubKindResult {
    aliasRoots?: readonly NodeId[];
    calls?: readonly NodeId[];
    id: NodeId;
    linkedIds?: readonly (NodeId | { id: NodeId; info: object })[];
    name: string;
}

Properties

aliasRoots?: readonly NodeId[]

(Direct) alias locations this call stems from

calls?: readonly NodeId[]

Ids of functions which are called by the respective function call, this will only be populated whenever you explicitly state the DefaultCallContextQueryFormat#callTargets. An empty array means that the call targets only non-local functions.

id: NodeId

The id of the call vertex identified within the supplied dataflow graph

linkedIds?: readonly (NodeId | { id: NodeId; info: object })[]

ids attached by the linkTo query, if you attached information with the attachLinkInfo field you can find it here

name: string

The name of the function call