this correct
def Trinity(_):
return
if __name__ == "__main__":
Trinity('CALL apoc.meta.stats() YIELD labels, relTypes, relTypesCount RETURN labels, relTypes, relTypesCount;')
but this returns Query skipped if we use this notation:
Trinity(
""""
CALL apoc.meta.stats()
YIELD labels, relTypes, relTypesCount
RETURN labels, relTypes, relTypesCount;
"""
)
I think this feature can be invoked in parseExtract.ts. Finally for python is more comfortable use long-string syntax.
ps: in output i have not any data, in any definition of Trinity function, except that:
psps: it's a pity that the project is not developing - it seems that it is quite important
this correct
but this returns
Query skippedif we use this notation:I think this feature can be invoked in parseExtract.ts. Finally for python is more comfortable use long-string syntax.
ps: in output i have not any data, in any definition of Trinity function, except that:
psps: it's a pity that the project is not developing - it seems that it is quite important