Skip to content

maximemoreillon/cms

Repository files navigation

CMS

pipeline status coverage report

A Simple CMS built using Neo4J and Express. It manages article and their tags as nodes of a directed graph.

Graph

More information can be found on the project page: https://articles.maximemoreillon.com/articles/112

API

Articles

Route Method query/body Description
/articles GET - Get article list
/articles POST coming soon Create an article
/articles/{article ID} GET - Get a single article
/articles/{article ID} PUT Coming soon Updates a single article
/articles/{article ID} DELETE - Deletes a single article
/articles/{article ID}/tags GET - Get the tags of an article
/articles/{article ID}/author GET - Get the author of an article

Tags

Route Method query/body Description
/tags GET - Get tag list
/tags POST tag_name Create a tag