Dmitrii Mikhalin
Dmitrii Mikhalin
## Description When we delete or change a `Rule` using `delete()` or `setLabel()` method and then use `LogicManager::getRule()`, it returns the unchanged rule from the `LogicCache`. Cache is reindexed only...
## Problem to Solve Unary negations are not allowed by the grammar. I.e. this expression is incorrect: `?x = -($a + $b)`. We'd like to add this unary operation.
## Problem to Solve It seems that current `typeql-rust` ignores repeated constraints, but we have this scenario in BDD: https://github.com/vaticle/typedb-behaviour/blob/7675fefe3f3b555ce9db558fda27d5ac2314fb17/typeql/language/define.feature#L1263 ## Proposed Solution Fix `typeql-rust` parser behaviour to make it...
## Problem to Solve We have a default connection in the behaviour tests that could be either to `typedb-core` or to `typedb-cluster`. For this reason we can't run `concept` and...