Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 782 Bytes

delete-a-document.md

File metadata and controls

30 lines (21 loc) · 782 Bytes
description
How to delete a document using WOQL

Delete a Document

{% hint style="info" %} To use this How-To, first clone the Star Wars demo into your team on TerminusCMS. You will then have full access to the data needed for this tutorial {% endhint %}

It is possible to delete a document in WOQL using the delete_document keyword.

First lets insert a document.

let v = Vars("id");
insert_document(doc({'@type' : 'Planet', label: 'Planet-X'}), v.id)

Supposing we get back the following:

"Planet/01dd97a75800f01f43ab7ab55b6dd08f198dd34d2bdbbeeb7bf4edee45111863"

Now we can delete it with:

delete_document("Planet/01dd97a75800f01f43ab7ab55b6dd08f198dd34d2bdbbeeb7bf4edee45111863")