Skip to content

Commit

Permalink
Add removal of global config to changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Boxuan Li <[email protected]>
  • Loading branch information
li-boxuan committed Oct 7, 2023
1 parent 94ffd6d commit c7f8d58
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,18 @@ to this change, JanusGraph automatically casts IDs of string type to long type i
auto conversion is disabled. If you have a vertex with ID 1234, `g.V("1234")` would no longer help you
find the vertex - you would have to do `g.V(1234)` now.

#### Allow removal of global config

Users could now remove global config keys by setting its value to null as follows:

```groovy
mgmt = graph.openManagement()
mgmt.set("<config_key>", null)
mgmt.commit()
```

Note that you cannot use the above command to drop an external index backend if it has mixed indexes.

##### New index management

The index management has received an overhaul which enables proper index removal.
Expand Down

0 comments on commit c7f8d58

Please sign in to comment.