You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 13, 2023. It is now read-only.
resolver.graph node data is now an object that has data and refMap.
exportinterfaceIGraphNodeData{/** * A map of the refs in this node, and where they point * * Example: * * ```json * { * "#/users/address": "file:///api.json/#models/address", * } * ``` */refMap: Dictionary<string>;/** * This node's resolved data */data?: any;}