@@ -271,14 +271,14 @@ class SessionConfig {
271
271
* This configuration enables filter notifications by:
272
272
*
273
273
* * the minimum severity level ({@link NotificationFilterMinimumSeverityLevel})
274
- * * disabling notification categories ({@link NotificationFilterDisabledCategory })
274
+ * * disabling notification classification ({@link NotificationFilterDisabledClassification })
275
275
*
276
276
*
277
277
* Disabling notifications can be done by defining the minimum severity level to 'OFF'.
278
278
* At driver level, when omitted, uses the server's default.
279
279
* At session level, when omitted, defaults to what filters have been configured at driver level.
280
280
*
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
282
282
* execution.
283
283
*
284
284
* @example
@@ -287,9 +287,9 @@ class SessionConfig {
287
287
* database: 'neo4j',
288
288
* notificationFilter: {
289
289
* 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'
293
293
* ]
294
294
* }
295
295
* })
@@ -309,18 +309,18 @@ class SessionConfig {
309
309
* // or driver.session({ database: 'neo4j', notificationFilter: undefined })
310
310
*
311
311
* // using default minimum severity level, but disabling 'HINT' and 'UNRECOGNIZED'
312
- * // notification categories
312
+ * // notification classifications
313
313
* const sessionWithDefaultSeverityLevel = driver.session({
314
314
* database: 'neo4j',
315
315
* 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'
319
319
* ]
320
320
* }
321
321
* })
322
322
*
323
- * // using default disabled categories , but configuring minimum severity level to 'WARNING'
323
+ * // using default disabled classifications , but configuring minimum severity level to 'WARNING'
324
324
* const sessionWithDefaultSeverityLevel = driver.session({
325
325
* database: 'neo4j',
326
326
* notificationFilter: {
0 commit comments