All annotations assumes class methods as decorated sources.
@Query([cypher statement], asTable=False)
- asTable: If true, the method will get the result parameter as a DataFrame Pandas object
@Transactional
def method_name(self, result, *args):
...
- tx: A transaction to be used (could be the one injected with Transactional decorator)
- parameters: A dictionary with statement parameters
def method_name(self, tx):
...