From 032d1fd3b28205b67a00711b4b08b5087579b139 Mon Sep 17 00:00:00 2001 From: "Martin Studer, fluxlabs ag" Date: Mon, 6 Mar 2023 23:29:06 +0100 Subject: [PATCH] depth 10 --- app/src/Adapters/Handlers/MysqlSourceQueryHandler.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/Adapters/Handlers/MysqlSourceQueryHandler.mjs b/app/src/Adapters/Handlers/MysqlSourceQueryHandler.mjs index 6849669..90f2984 100644 --- a/app/src/Adapters/Handlers/MysqlSourceQueryHandler.mjs +++ b/app/src/Adapters/Handlers/MysqlSourceQueryHandler.mjs @@ -65,7 +65,7 @@ export class MysqlSourceQueryHandler { }); } - query += " where (type = 'crs' or type = 'cat') and deleted is null and depth < 6 order by depth"; //todo + query += " where (type = 'crs' or type = 'cat') and deleted is null and depth < 10 order by depth"; //todo const [rows] = await this.pool.query(query); return rows;