diff --git a/src/TableManager.php b/src/TableManager.php
index 7a921cd5990ee3194090173d2d26447d1b9afb45..0a6e04c4debd1a53ec89f100865e9a5ef5d72c84 100644
--- a/src/TableManager.php
+++ b/src/TableManager.php
@@ -46,7 +46,10 @@ final class TableManager
 	}
 
 	/**
-	 * @param array<string, mixed> $conditions
+	 * @param array<string, mixed> $conditions Conditions provides low-level access to "where" clause concatenated by %and. 
+	 *                                         More: https://dibiphp.com/en/documentation
+	 *                                         Note! Types and names are currently NOT mapped.
+	 *                                         Please follow https://gitlab.grifart.cz/grifart/tables/-/issues/2 on progress.
 	 * @return Row[] (subclass of row)
 	 */
 	public function findBy(Table $table, array $conditions): array