I would like to call 2 different procedures and combine the output for further matches in one cypher query. Is it possible?
So, to make it more clear:
- I have created a manual index which I use in my queries with
call apoc.index.search("myindex","searchterm")
- I also have some own procedure, which I would like to use together with the apoc.index.search from above.
So I would with something like that
call
apoc.index.search("myindex","searchterm") and my.own.procedure("searchterm")
yield both resultsets
Are there any ways to do this?