Example #1
0
 def __init__(self, entity, properties):
     Job.__init__(self, "PUT", Target(entity, "properties"),
                  PropertySet(properties))
Example #2
0
 def __init__(self, node, labels):
     Job.__init__(self, "PUT", Target(node, "labels"),
                  list(LabelSet(labels)))
Example #3
0
 def __init__(self, relationship):
     Job.__init__(self, "GET", Target(relationship))
Example #4
0
 def __init__(self, entity, key, value):
     Job.__init__(self, "PUT", Target(entity, "properties", key), value)
Example #5
0
 def __init__(self, entity):
     Job.__init__(self, "GET", Target(entity, "properties"))
Example #6
0
 def __init__(self, node):
     Job.__init__(self, "GET", Target(node, "labels"))
Example #7
0
 def __init__(self, start_node, rel, end_node, **properties):
     body = {"type": rel.type, "to": Target(end_node).uri_string}
     if rel.properties or properties:
         body["data"] = dict(rel.properties, **properties)
     Job.__init__(self, "POST", Target(start_node, "relationships"), body)
Example #8
0
class CreateNodeJob(Job):

    target = Target("node")

    def __init__(self, **properties):
        Job.__init__(self, "POST", self.target, properties)
Example #9
0
 def __init__(self, entity, label):
     Job.__init__(self, "DELETE", Target(entity, "labels", label))
Example #10
0
 def __init__(self, entity, key):
     Job.__init__(self, "DELETE", Target(entity, "properties", key))
Example #11
0
 def __init__(self, entity):
     Job.__init__(self, "DELETE", Target(entity))