py2neo match

class py2neo.matching.NodeMatcher(graph)
描述
get(identity)
match(*labels, **properties)
class py2neo.matching.NodeMatch(graph, labels=frozenset(), conditions=(), order_by=(), skip=None, limit=None)
描述
first()
limit(amount)
order_by(*fields)
skip(amount)
where(*conditions, **properties)
class py2neo.matching.RelationshipMatcher(graph)
描述
get(identity)
match(nodes=None, r_type=None, **properties)
class py2neo.matching.RelationshipMatch(graph, nodes=None, r_type=None, conditions=(), order_by=(), skip=None, limit=None)
描述
first()
limit(amount)
order_by(*fields)
skip(amount)
where(*conditions, **properties)

你可能感兴趣的:(数据库)