You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ability to remove attributes from its owners without deleting the attribute itself
The ability to remove roleplayers from a relation
Current Workaround
In order to delete an attribute from its owners right now uses the via keyword.
match $x isa person, has name $n via $h; delete $h;
However, we will be removing the via keyword, as we will be deleting the implicit relation that exists to implement the has keyword. Instead, we will have native has data structure.
Allow the delete query to operate on full statements, just like insert statements. For example, here's an insert query operating on a statement:
match $x isa person; insert $x has name "alice";
A delete query operating on a statement can therefore do:
match $x isa person, has name $n; delete $x has name $n;
This will result in symmetry of insert and delete queries.
The above example shows how we solve the first problem - removing attributes from their owners. In order to delete roleplayers` from their relation, you can write
match $r (role-a: $x, role-b: $x) isa relation;
delete $r (role-a: $x);
Note that in the examples above, we are not deleting the concept instances represented by the variables themselves. In order to delete the concept instances, you must write:
match $x isa person, has name $n;
delete $x isa person; $n isa name;
This will delete all instances of person and name found in the matched pattern.
Concretely, the following will be implemented:
we only allow match...delete queries (delete... only clauses are disallowed in the grammar)
variables in the delete clause must be a subset of the match clause
allowed deletion statements will by the same set allowed by insert
as with inserts, using NEQ, Predicates (ie. operations) and ID properties in the delete clause should throw
To verify that the concepts found in the match clause satisfy the delete clause as well: this means we can satisfy inheritance contraints naturally and throw otherwise, for example in :
match $x isa thing;
delete $x isa person;
however, the following will never throw:
match $x isa person;
delete $x isa thing;
Deletion with ID edge case:
match $x id V123;
delete $x isa thing;
should work, however:
* willl throw if V123 happens to be a type
* requires the isa thing clause to delete the instance
* will if trying to write match $x id V123; delete $x id V123;
Note that as with insert statements, users can easily end up with quadratic complexities, such as:
match $x isa person; $n isa name;
delete $x has name $n;
Deleting duplicate role players:
we will define that in delete queries:
match $r (arole: $x) isa reflexive;
delete $r (arole: $x); $r (arole: $x);
should be equivalent to :
match $r (arole: $x) isa reflexive;
delete $r (arole: $x, arole: $x);
this should lend itself to a straightforward implementation of executing one delete operation per property
Additional Information
Implementing the proposed solution above would allow us to introduce an "update query", by doing:
match $x isa person, has first-name "alice", has last-name $n;
delete $x has last-name $n;
insert $x has last-name "Davidson";
## What is the goal of this PR?
Implementing the first step of #115, we change the grammar to accept `statement_instance` for `delete` clauses, not just variables. As a medium term consequence, we remove the ability to limit, sort or offset delete queries.
## What are the changes implemented in this PR?
* Change `variables` to `statement_instance` in `delete` clauses
* Update tests to reflect not just using variables
* Add new test to ensure query throws if `delete` variable not present in the `match`
* Remove `Filterable` from delete queries
Problem to Solve
This issue actually addresses several issues.
attributes
from its owners without deleting theattribute
itselfroleplayers
from a relationCurrent Workaround
In order to delete an
attribute
from its owners right now uses thevia
keyword.However, we will be removing the
via
keyword, as we will be deleting the implicit relation that exists to implement thehas
keyword. Instead, we will have nativehas
data structure.Right now, there is no workaround to remove a
roleplayer
from arelation
and this is actually a long-standing issue: Graql: Enable removing roleplayer from relationship in Graql #39.Proposed Solution
Allow the delete query to operate on full
statements
, just like insertstatements
. For example, here's an insert query operating on astatement
:A delete query operating on a
statement
can therefore do:This will result in symmetry of
insert
anddelete
queries.The above example shows how we solve the first problem - removing
attributes
from their owners. In order to delete
roleplayers` from their relation, you can writeNote that in the examples above, we are not deleting the concept instances represented by the variables themselves. In order to delete the concept instances, you must write:
This will delete all instances of
person
andname
found in the matchedpattern
.Concretely, the following will be implemented:
match...delete
queries (delete...
only clauses are disallowed in the grammar)delete
clause must be a subset of thematch
clauseinsert
delete
clause should throwmatch
clause satisfy thedelete
clause as well: this means we can satisfy inheritance contraints naturally and throw otherwise, for example in :however, the following will never throw:
should work, however:
* willl throw if V123 happens to be a type
* requires the
isa thing
clause to delete the instance* will if trying to write
match $x id V123; delete $x id V123;
insert
statements, users can easily end up with quadratic complexities, such as:we will define that in delete queries:
should be equivalent to :
this should lend itself to a straightforward implementation of executing one delete operation per property
Additional Information
Implementing the proposed solution above would allow us to introduce an "update query", by doing:
Pieces of Work
match
clause before executedelete
typedb#5712)delete
syntax, removevia
, query options, syntax renaming typedb-docs#296)via
keyword, and propagage (Remove VIA #124) (Remove implicit variable statement #125)The text was updated successfully, but these errors were encountered: