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
Maximilian Klein edited this page Sep 7, 2016
·
1 revision
Some possible query formats
inc.node(['a','b'])inc.node('»a»b')// = inc.node(['a', 'b'])inc.node('/std/const')// = first const node found in inc.inc.nodes('/std/const')// = all const nodes in incinc.nodesDeep('/std/const')// = all const nodes in inc and in its childreninc.node('#djhauj3433jasdj')// query by unique idinc.addEdge('/std/const@0','/math/add@1',{noStrict: true})// noStrict does not throw exception if the nodes are not uniquely describe by the selectorinc.addEdge('»a»b','#askjdhaskjdhas')//throws error if it is not possible to connect the nodes.inc.hasEdge('/std/const@0','/math/add@1')