Skip to content

Commit 2d1e10e

Browse files
committed
update links
1 parent ce1fd7a commit 2d1e10e

File tree

11 files changed

+16
-21
lines changed

11 files changed

+16
-21
lines changed

badger/design.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ Badger’s design is based on a paper titled
1919
The following blog posts are a great starting point for learning more about
2020
Badger and the underlying design principles:
2121

22-
- [Introducing Badger: A fast key-value store written natively in Go](https://dgraph.io/blog/post/badger/)
23-
- [Make Badger crash resilient with ALICE](https://dgraph.io/blog/post/alice/)
24-
- [Badger vs LMDB vs BoltDB: Benchmarking key-value databases in Go](https://dgraph.io/blog/post/badger-lmdb-boltdb/)
25-
- [Concurrent ACID Transactions in Badger](https://dgraph.io/blog/post/badger-txn/)
22+
- [Introducing Badger: A fast key-value store written natively in Go](https://hypermode.com/blog/badger/)
23+
- [Make Badger crash resilient with ALICE](https://hypermode.com/blog/alice/)
24+
- [Badger vs LMDB vs BoltDB: Benchmarking key-value databases in Go](https://hypermode.com/blog/badger-lmdb-boltdb/)
25+
- [Concurrent ACID Transactions in Badger](https://hypermode.com/blog/badger-txn/)
2626

2727
## Comparisons
2828

@@ -50,7 +50,7 @@ specifically for rotating disks. As such RocksDB's design isn't aimed at SSDs.
5050

5151
<sup>3</sup> SSI: Serializable Snapshot Isolation. For more details, see the
5252
blog post [Concurrent ACID Transactions in
53-
Badger](https://dgraph.io/blog/post/badger-txn/)
53+
Badger](https://hypermode.com/blog/badger-txn/)
5454

5555
<sup>4</sup> Badger provides direct access to value versions via its Iterator
5656
API. Users can also specify how many versions to keep per key via Options.

dgraph/admin/bulk-loader.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ datasets into Dgraph.
1515
Only one or more Dgraph Zeros should be running for bulk loading. Dgraph Alphas
1616
are started later.
1717

18-
You can [read the technical details](https://dgraph.io/blog/post/bulkloader/)
18+
You can [read the technical details](https://hypermode.com/blog/bulkloader/)
1919
about the Bulk Loader on the blog.
2020

2121
<Warning>

dgraph/dql/variables.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ of Peter Jackson movies they have appeared in.
216216

217217
More examples can be found in two Dgraph blog posts about using variable
218218
propagation for recommendation engines
219-
([post 1](https://open.dgraph.io/post/recommendation/),
220-
[post 2](https://open.dgraph.io/post/recommendation2/)).
219+
([post 1](https://hypermode.com/blog/recommendation/),
220+
[post 2](https://hypermode.com/blog/recommendation2/)).
221221

222222
## Math on value variables
223223

dgraph/enterprise/encryption-at-rest.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ automatically (more info about this is covered on the encryption-at-rest
155155
[blog][encblog] post).
156156

157157
[encblog]:
158-
https://dgraph.io/blog/post/encryption-at-rest-dgraph-badger#one-key-to-rule-them-all-many-keys-to-find-them
158+
https://hypermode.com/blog/encryption-at-rest-dgraph-badger#one-key-to-rule-them-all-many-keys-to-find-them
159159

160160
Changing the existing key to a new one is called key rotation. You can rotate
161161
the master encryption key by using the `badger rotate` command on both p and w

dgraph/enterprise/license.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import DgraphWIP from "/snippets/dgraph-wip.mdx"
1010
Dgraph enterprise features are proprietary licensed under the [Dgraph Community
1111
License][dcl]. All Dgraph releases contain proprietary code for enterprise
1212
features. Enabling these features requires an enterprise contract from
13-
13+
1414

1515
**Dgraph enterprise features are enabled by default for 30 days in a new
1616
cluster**. After the trial period of thirty (30) days, the cluster must obtain a

dgraph/graphql/connecting.mdx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ HTTP GET requests.
1717
<Tabs>
1818
<Tab title="Hypermode">
1919

20-
- access the [Overview](https://cloud.dgraph.io/_/dashboard) panel of Dgraph
21-
Cloud dashboard.
20+
- access the [Hypermode console](https://hypermode.com/go)
2221
- the `GraphQL Endpoint` is displayed at the bottom.
2322
- click on the link button to copy it.
2423

dgraph/graphql/subscriptions.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ display the updated list of to dos.
176176
### Apollo client setup
177177

178178
To learn about using subscriptions with Apollo client, see a blog post on
179-
[GraphQL Subscriptions with Apollo client](https://dgraph.io/blog/post/how-does-graphql-subscription/).
179+
[GraphQL Subscriptions with Apollo client](https://hypermode.com/blog/post/how-does-graphql-subscription/).
180180

181181
To pass the user JWT token in the Apollo client,use `connectionParams`, as
182182
follows.

dgraph/guides/get-started-with-dgraph/geolocation.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -843,8 +843,6 @@ newsletter to get the latest tutorial right into your inbox.
843843

844844
- Go to [Clients](/dgraph/sdks/overview) to see how to communicate with Dgraph
845845
from your app.
846-
- Take the [Tour](https://dgraph.io/tour/) for a guided tour of how to write
847-
queries in Dgraph.
848846
- A wider range of queries can also be found in the
849847
[Query Language](/dgraph/dql/query) reference.
850848
- See [Deploy](/dgraph/self-managed/overview) if you wish to run Dgraph in a

dgraph/guides/get-started-with-dgraph/introduction.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import DgraphWIP from "/snippets/dgraph-wip.mdx"
99

1010
**Welcome to getting started with Dgraph.**
1111

12-
[Dgraph](https://dgraph.io) is an open source, transactional, distributed,
13-
native Graph Database. Here is the first tutorial of the get started series on
14-
using Dgraph.
12+
[Dgraph](https://github.com/hypermdodeinc/dgraph) is an open source,
13+
transactional, distributed, native Graph Database. Here is the first tutorial of
14+
the get started series on using Dgraph.
1515

1616
In this tutorial, we'll learn about:
1717

dgraph/guides/message-board-app/react-ui/react-app-boiler-plate.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Tailwind CSS, Semantic UI React, etc.)
2828

2929
This tutorial starts with the minimal boilerplate already complete. To read
3030
through the setup process that was used to build this tutorial, see this
31-
[blog about setting up a Dgraph Cloud app](https://dgraph.io/blog/post/slash-graphql-app-setup/).
31+
[blog about setting up a Dgraph Cloud app](https://github.com/hypermodeinc/dgraph.io/blog/post/slash-graphql-app-setup/).
3232

3333
For this tutorial, you can start with the boilerplate React app and CSS by
3434
checking out the setup from GitHub. To do this, see the

0 commit comments

Comments
 (0)