diff --git a/cypherv2/convertQuery.go b/cypherv2/convertQuery.go
index df7e9ed9316edbbcadbc0e096cf3e37f4dd3e2aa..b58fb16b6ba38c73c477c89f1a7d3d0dcc4e7e7e 100755
--- a/cypherv2/convertQuery.go
+++ b/cypherv2/convertQuery.go
@@ -195,11 +195,13 @@ func createWhereLogic(op string, left string, whereLogic string, cacheData query
 			remainingNodes = append(remainingNodes, entity.id)
 		}
 	}
-	for _, relation := range cacheData.relations {
-		if relation.id != left {
-			remainingNodes = append(remainingNodes, relation.id)
-		}
-	}
+
+	// TODO: Relation temporarily ignored due to unnecessary added complexity in the query
+	// for _, relation := range cacheData.relations {
+	// 	if relation.id != left {
+	// 		remainingNodes = append(remainingNodes, relation.id)
+	// 	}
+	// }
 
 	remainingNodesStr := ""
 	if len(remainingNodes) > 0 {