I have a small question on CREATE and TOUCH As p...
# spicedb
t
I have a small question on CREATE and TOUCH As per definition >CREATE will create the relationship only if it doesn't exist, and error otherwise. >TOUCH will upsert the relationship, and will not error if it already exists. If I want to change the relationship that the subject has with the resource I will have to delete the existing relationship using
DELETE
operation then call either
CREATE
or
TOUCH
to save new relation Is that correct?