A fully open-source headless CMS that supports Markdown and Visual Editing
Method on the deprecated GitFile class (PR #5715). Direct disk writes are replaced by GraphQL mutations submitted through the TinaCMS client.
411d until removal
/**
* @deprecated
*/
write = (values: any) => {
this.git.writeToDisk!({
fileRelativePath: this.relativePath,
content: this.format(values),
});
};Issue the write as a GraphQL mutation via the TinaCMS client.