diff --git a/docs/concepts/architecture.md b/docs/concepts/architecture.md new file mode 100644 index 000000000..dc52000ff --- /dev/null +++ b/docs/concepts/architecture.md @@ -0,0 +1,8 @@ +--- +id: architecture +title: "Architecture" +--- + +# Architecture + +TODO diff --git a/docs/concepts/high-level-api.md b/docs/concepts/high-level-api.md new file mode 100644 index 000000000..24644ae31 --- /dev/null +++ b/docs/concepts/high-level-api.md @@ -0,0 +1,7 @@ +--- +id: high-level-api +title: "High Level API" +--- + +# High Level API +TODO \ No newline at end of file diff --git a/docs/concepts/low-level-api.md b/docs/concepts/low-level-api.md new file mode 100644 index 000000000..acf67bb57 --- /dev/null +++ b/docs/concepts/low-level-api.md @@ -0,0 +1,7 @@ +--- +id: low-level-api +title: "Low Level API" +--- + +# Low Level API +TODO \ No newline at end of file diff --git a/docs/transactions.md b/docs/concepts/transactions.md similarity index 100% rename from docs/transactions.md rename to docs/concepts/transactions.md diff --git a/docs/cheat-sheet.md b/docs/guides/cheat-sheet.md similarity index 100% rename from docs/cheat-sheet.md rename to docs/guides/cheat-sheet.md diff --git a/docs/codec-customization.md b/docs/guides/codec-customization.md similarity index 100% rename from docs/codec-customization.md rename to docs/guides/codec-customization.md diff --git a/docs/getting-started.md b/docs/guides/getting-started.md similarity index 100% rename from docs/getting-started.md rename to docs/guides/getting-started.md diff --git a/docs/reference/attribute-value.md b/docs/reference/attribute-value.md new file mode 100644 index 000000000..192c334a0 --- /dev/null +++ b/docs/reference/attribute-value.md @@ -0,0 +1,10 @@ +--- +id: attribute-value +title: "AttributeValue" +--- + +# AttributeValue + +TODO + +mention aliases \ No newline at end of file diff --git a/docs/reference/dynamodb-query.md b/docs/reference/dynamodb-query.md new file mode 100644 index 000000000..dd8aaa97c --- /dev/null +++ b/docs/reference/dynamodb-query.md @@ -0,0 +1,8 @@ +--- +id: dynamodb-query +title: "DynamoDBQuery" +--- + +# DynamoDBQuery + +TODO \ No newline at end of file diff --git a/docs/reference/projection-expression.md b/docs/reference/projection-expression.md new file mode 100644 index 000000000..832fcd940 --- /dev/null +++ b/docs/reference/projection-expression.md @@ -0,0 +1,8 @@ +--- +id: projection-expression +title: "ProjectionExpression" +--- + +# ProjectionExpression + +TODO \ No newline at end of file diff --git a/docs/sidebars.js b/docs/sidebars.js index 318f81e13..a8ad380f0 100644 --- a/docs/sidebars.js +++ b/docs/sidebars.js @@ -6,10 +6,41 @@ const sidebars = { collapsed: false, link: { type: "doc", id: "index" }, items: [ - "getting-started", - "cheat-sheet", - "codec-customization", - "transactions", + // Concepts + { + type: "category", + collapsed: false, + label: "Concepts", + items: [ + "concepts/architecture", + "concepts/low-level-api", + "concepts/high-level-api", + "concepts/transactions", + ], + + }, + // Guides + { + type: "category", + collapsed: false, + label: "Guides", + items: [ + "guides/getting-started", + "guides/cheat-sheet", + "guides/codec-customization" + ] + }, + // Reference + { + type: "category", + collapsed: false, + label: "Reference", + items: [ + "reference/dynamodb-query", + "reference/attribute-value", + "reference/projection-expression", + ] + } ] } ]