![]() |
Open Kilda Java Documentation
|
Go to the source code of this file.
Classes | |
class | nodes.Nodes |
class | nodes.Edge |
class | nodes.Link |
Namespaces | |
nodes | |
Variables | |
dictionary | nodes.data = {'query' : 'MATCH (n) return n'} |
tuple | nodes.auth = ('neo4j', 'temppass') |
nodes.result_switches = requests.post('http://localhost:7474/db/data/cypher', data=data, auth=auth) | |
nodes.j_switches = json.loads(result_switches.text) | |
nodes.nodes = Nodes() | |
nodes.edges | |
nodes.result_relationships = requests.get(str(r['outgoing_relationships']), auth=auth) | |
nodes.j_paths = json.loads(result_relationships.text) | |
list | nodes.outgoing_relationships = [] |
nodes.target = Link() | |
nodes.edge = Edge() | |
nodes.source = Link() | |
nodes.label | |
nodes.id | |
nodes.dest_node = requests.get(str(j_path['end']), auth=auth) | |
nodes.j_dest_node = json.loads(dest_node.text) | |
nodes.value | |