all repos — litestore @ 420f67e8fcce9c6fe1cd86c67a56df3fdbb7ae24

A minimalist nosql document store.

Updated docs.
Cevasco, Fabio fabio.cevasco@siemens.com
Mon, 13 Jan 2020 17:28:46 +0100
commit

420f67e8fcce9c6fe1cd86c67a56df3fdbb7ae24

parent

765bdc57a5ff46dadb5de77e0feb112adf8db371

2 files changed, 8 insertions(+), 1 deletions(-)

jump to
M src/admin/js/components/navbar.jssrc/admin/js/components/navbar.js

@@ -25,6 +25,9 @@ {path: "/guide/api_dir", title: caret+"dir (LiteStore Directory)"},

{path: "/guide/api_docs", title: caret+"docs (LiteStore Documents)"}, {path: "/guide/api_tags", title: caret+"tags (LiteStore Tags)"}, {path: "/guide/api_indexes", title: caret+"indexes (LiteStore Indexes)"}, + {path: "/guide/nim-api", title: "Nim API Reference"}, + {path: "/guide/nim-api_high", title: caret+"High Level"}, + {path: "/guide/nim-api_low", title: caret+"Low Level"}, {path: "/guide/credits", title: "Credits"} ]; vm.taglinks = function(info){
M src/admin/md/api_indexes.mdsrc/admin/md/api_indexes.md

@@ -95,7 +95,7 @@ ]

} ``` -#### GET index/:id +#### GET indexes/:id Retrieves the specified index and corresponding JSON field.

@@ -117,6 +117,10 @@

#### PUT indexes/:id Creates a new index with the specified ID. + +Note that: +* Index IDs can only contain letters, numbers, and underscores. +* Index fields must be valid paths to JSON fields. > %warning% > No updates