5.26.0
This release brings a preview support for GQL Errors.
With this update, Neo4jException
gets the following additional GQL metadata:
- GQLSTATUS
- GQLSTATUS description
- GQL diagnostic record
- GQL error cause
The additional metadata is exposed via the following new methods respectively:
String gqlStatus();
String statusDescription();
Map<String, Value> diagnosticRecord();
Optional<Neo4jException> gqlCause();
In addition, the following getters have been added for extracting a vendor-specific classification from the GQL diagnostic record:
Optional<GqlStatusErrorClassification> classification();
Optional<String> rawClassification();
⭐ New Features
- Add preview support for GQL Errors #1559
🔧 Dependency Management
- Update dependencies #1573