@@ -271,14 +271,14 @@ class SessionConfig {
271271 * This configuration enables filter notifications by:
272272 *
273273 * * the minimum severity level ({@link NotificationFilterMinimumSeverityLevel})
274- * * disabling notification categories ({@link NotificationFilterDisabledCategory })
274+ * * disabling notification classification ({@link NotificationFilterDisabledClassification })
275275 *
276276 *
277277 * Disabling notifications can be done by defining the minimum severity level to 'OFF'.
278278 * At driver level, when omitted, uses the server's default.
279279 * At session level, when omitted, defaults to what filters have been configured at driver level.
280280 *
281- * Disabling categories or severities allows the server to skip analysis for those, which can speed up query
281+ * Disabling classifications or severities allows the server to skip analysis for those, which can speed up query
282282 * execution.
283283 *
284284 * @example
@@ -287,9 +287,9 @@ class SessionConfig {
287287 * database: 'neo4j',
288288 * notificationFilter: {
289289 * minimumSeverityLevel: neo4j.notificationFilterMinimumSeverityLevel.WARNING, // or 'WARNING
290- * disabledCategories : [
291- * neo4j.notificationFilterDisabledCategory .HINT, // or 'HINT'
292- * neo4j.notificationFilterDisabledCategory .DEPRECATION // or 'DEPRECATION'
290+ * disabledClassifications : [
291+ * neo4j.notificationFilterDisabledClassification .HINT, // or 'HINT'
292+ * neo4j.notificationFilterDisabledClassification .DEPRECATION // or 'DEPRECATION'
293293 * ]
294294 * }
295295 * })
@@ -309,18 +309,18 @@ class SessionConfig {
309309 * // or driver.session({ database: 'neo4j', notificationFilter: undefined })
310310 *
311311 * // using default minimum severity level, but disabling 'HINT' and 'UNRECOGNIZED'
312- * // notification categories
312+ * // notification classifications
313313 * const sessionWithDefaultSeverityLevel = driver.session({
314314 * database: 'neo4j',
315315 * notificationFilter: {
316- * disabledCategories : [
317- * neo4j.notificationFilterDisabledCategory .HINT, // or 'HINT'
318- * neo4j.notificationFilterDisabledCategory .UNRECOGNIZED // or 'UNRECOGNIZED'
316+ * disabledClassifications : [
317+ * neo4j.notificationFilterDisabledClassification .HINT, // or 'HINT'
318+ * neo4j.notificationFilterDisabledClassification .UNRECOGNIZED // or 'UNRECOGNIZED'
319319 * ]
320320 * }
321321 * })
322322 *
323- * // using default disabled categories , but configuring minimum severity level to 'WARNING'
323+ * // using default disabled classifications , but configuring minimum severity level to 'WARNING'
324324 * const sessionWithDefaultSeverityLevel = driver.session({
325325 * database: 'neo4j',
326326 * notificationFilter: {
0 commit comments