Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add new skin #616

Merged
merged 7 commits into from
Jun 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
193 changes: 129 additions & 64 deletions content/_index.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion content/deploy/admin/dgraph-administration.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Before performing a mutation on a predicate that doesn't exist in the schema,
you need to perform an alter operation with that predicate and its schema type.

```sh
dgraph alpha --limit "mutation=strict; mutations-nquad=1000000"
dgraph alpha --limit "mutations=strict; mutations-nquad=1000000"
```

## Secure Alter Operations
Expand Down
4 changes: 2 additions & 2 deletions content/deploy/cli-command-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -336,9 +336,9 @@ Flags:
compression=snappy; [none, zstd:level, snappy] Specifies the compression algorithm and
compression level (if applicable) for the postings directory."none" would disable
compression, while "zstd:1" would set zstd compression at level 1.
goroutines=8; The number of goroutines to use in badger.Stream.
numgoroutines=8; The number of goroutines to use in badger.Stream.
max-retries=-1; Commits to disk will give up after these number of retries to prevent locking the worker in a failed state. Use -1 to retry infinitely.
(default "compression=snappy; goroutines=8; max-retries=-1;")
(default "compression=snappy; numgoroutines=8; max-retries=-1;")
--cache string Cache options
percentage=0,65,35; Cache percentages summing up to 100 for various caches (FORMAT: PostingListCache,PstoreBlockCache,PstoreIndexCache)
size-mb=1024; Total size of cache (in MB) to be used in Dgraph.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
+++
title = "Lambda Server"
description = "Setup a Dgraph database with a lambda server. Dgraph Lambda is a serverless platform for running JavaScript on Dgraph and Dgraph Cloud."
weight = 6
description = "Setup a Dgraph database with a lambda server. Dgraph Lambda is a serverless platform for running JavaScript on Dgraph and Dgraph Cloud"
aliases =['/graphql/lambda/server']
weight = 3
[menu.main]
parent = "lambda-resolver"

parent = "installation"
+++

In this article you'll learn how to setup a Dgraph database with a lambda server.
Expand Down
2 changes: 1 addition & 1 deletion content/deploy/installation/production-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
date = "2017-03-20T22:25:17+11:00"
title = "Production checklist"
description = "Requirements to install Dgraph in a production environment"
weight = 2
weight = 4
[menu.main]
parent = "installation"
+++
Expand Down
2 changes: 1 addition & 1 deletion content/deploy/installation/single-host-setup.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
+++
date = "2017-03-20T22:25:17+11:00"
title = "Learning Environment"
weight = 3
weight = 2
[menu.main]
parent = "installation"
+++
Expand Down
2 changes: 1 addition & 1 deletion content/graphql/custom/mutation.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Let's say we have an application about authors and posts. Logged in authors can
type Author { ... }

type Post {
id: ID:
id: ID!
title: String
text: String
datePublished: DateTime
Expand Down
2 changes: 1 addition & 1 deletion content/graphql/schema/graph-links.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ mutation {
}
```

will automatically add it to Diggy's list of `posts`. Deleting the post will remove it from Diggy's `posts`. Similarly, using an update mutation on an author to insert a new post will automatically add Diggy as the author the author
will automatically add it to Diggy's list of `posts`. Deleting the post will remove it from Diggy's `posts`. Similarly, using an update mutation on an author to insert a new post will automatically add Diggy as the author

```graphql
mutation {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ After you have the boilerplate code on your machine, you can start the app
using the following `yarn` command:

```sh
yarn install
yarn start
```

Expand Down
Loading