I think QARetrievalChain and GraphCypherChain both output runnable classes that aren't directly compatible with standard LLM Chain nodes in Flowise.
Possible Solution
Try using a Custom Function node to merge the outputs from both RAG flows:
Create a Custom Function node that accepts both runnable outputs
Extract the actual response data from each runnable class using their respective methods (like .invoke() or .run())
Combine the responses in your custom logic
Pass the merged result to an LLM Chain node for final response generation