Skip to main content

Delete

Deleting stuff is as easy as ever. For each entity EYWA will create delete mutation that will accept arguments that uniquely defines entity record. I.E. if we wish to delete User than argument should be either name or EUUID.

Mutation#

mutation {  deleteUser(name:"john_wayne")}

Response#

{  "data": {    "deleteUser": true  }}

And with this mutation user john_wayne is no more... All relations to any entity have been deleted and john is truly not with us any more.