diff --git a/src/utils/cypher/converter/queryConverter.test.ts b/src/utils/cypher/converter/queryConverter.test.ts
index eb561d33deea702e621fb6efd0cbba3330d4c205..c981a897fe3c457863f30e87538efa3c413e17f4 100644
--- a/src/utils/cypher/converter/queryConverter.test.ts
+++ b/src/utils/cypher/converter/queryConverter.test.ts
@@ -630,4 +630,37 @@ describe('query2Cypher', () => {
 
     expect(fixCypherSpaces(cypher.query)).toEqual(fixCypherSpaces(expectedCypher));
   });
+
+  it('should return correctly on a query with count', () => {
+    const query: BackendQueryFormat = {
+      saveStateID: 'b1873956-e51b-46db-9c33-ab8bfbd177ef',
+      query: [
+        {
+          id: 'path_0',
+          node: {
+            relation: {
+              id: 'id_1739982191754',
+              label: 'HAS',
+              depth: {
+                max: 1,
+                min: 1,
+              },
+              direction: 'BOTH',
+              node: {},
+            },
+          },
+        },
+      ],
+      limit: 555,
+      return: ['*'],
+      cached: false,
+    };
+
+    const cypher = query2Cypher(query);
+    const expectedCypher = 'MATCH path_0 = (()-[id_1739982191754:HAS*1..1]-()) RETURN * LIMIT 555';
+    expect(fixCypherSpaces(cypher.query)).toEqual(fixCypherSpaces(expectedCypher));
+    const expectedCypherCount =
+      'MATCH path_0 = (()-[id_1739982191754:HAS*1..1]-()) RETURN COUNT(DISTINCT id_1739982191754) as id_1739982191754_count';
+    expect(fixCypherSpaces(cypher.countQuery)).toEqual(fixCypherSpaces(expectedCypherCount));
+  });
 });
diff --git a/src/utils/cypher/converter/queryConverter.ts b/src/utils/cypher/converter/queryConverter.ts
index d46071bef8af99b9baffbf53ae2f0ea2b1daa8f8..b4b26349782651f51049e5099ce3e7527ec4162b 100644
--- a/src/utils/cypher/converter/queryConverter.ts
+++ b/src/utils/cypher/converter/queryConverter.ts
@@ -95,7 +95,8 @@ export function query2Cypher(JSONQuery: BackendQueryFormat): QueryCypher {
   countQuery += Object.values(cacheData.entities)
     .map(e => `COUNT(DISTINCT ${e.id}) as ${e.id}_count`)
     .join(', ');
-  countQuery += Object.values(cacheData.relations).length > 0 ? ', ' : '';
+
+  countQuery += Object.values(cacheData.entities).length > 0 && Object.values(cacheData.relations).length > 0 ? ', ' : '';
   countQuery += Object.values(cacheData.relations)
     .map(r => `COUNT(DISTINCT ${r.id}) as ${r.id}_count`)
     .join(', ');