Skip to content

Commit b24b99c

Browse files
correct broken links due to enteprise feature move
1 parent cd79a56 commit b24b99c

File tree

16 files changed

+23
-55
lines changed

16 files changed

+23
-55
lines changed

docusaurus-docs/docs-graphql/admin/admin-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -806,7 +806,7 @@ Here are the important types, queries, and mutations from the `admin` schema.
806806
You'll notice that the `/admin` schema is very much the same as the schemas generated by Dgraph GraphQL.
807807

808808
* The `health` query lets you know if everything is connected and if there's a schema currently being served at `/graphql`.
809-
* The `state` query returns the current state of the cluster and group membership information. For more information about `state` see [here](/admin/dgraph-zero#more-about-the-state-endpoint).
809+
* The `state` query returns the current state of the cluster and group membership information.
810810
* The `config` query returns the configuration options of the cluster set at the time of starting it.
811811
* The `getGQLSchema` query gets the current GraphQL schema served at `/graphql`, or returns null if there's no such schema.
812812
* The `updateGQLSchema` mutation allows you to change the schema currently served at `/graphql`.

docusaurus-docs/docs-graphql/admin/index.md

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,6 @@ When you start Dgraph, two GraphQL endpoints are served.
2828

2929
At `/graphql` you'll find the GraphQL API for the types you've added. That's what your app would access and is the GraphQL entry point to Dgraph. If you need to know more about this, see the [quick start](https://dgraph.io/docs/graphql/quick-start/) and [schema docs](https://dgraph.io/docs/graphql/schema/).
3030

31-
### /admin
32-
33-
At `/admin` you'll find an admin API for administering your GraphQL instance. The admin API is a GraphQL API that serves POST and GET as well as compressed data, much like the `/graphql` endpoint.
34-
35-
36-
* The `health` query lets you know if everything is connected and if there's a schema currently being served at `/graphql`.
37-
* The `state` query returns the current state of the cluster and group membership information. For more information about `state` see [here](/admin/dgraph-zero#more-about-the-state-endpoint).
38-
* The `config` query returns the configuration options of the cluster set at the time of starting it.
39-
* The `getGQLSchema` query gets the current GraphQL schema served at `/graphql`, or returns null if there's no such schema.
40-
* The `updateGQLSchema` mutation allows you to change the schema currently served at `/graphql`.
41-
42-
## Enterprise features
43-
44-
Enterprise Features like ACL, Backups and Restore are also available using the GraphQL API at `/admin` endpoint.
45-
46-
* [ACL](/admin/enterprise-features/access-control-lists#accessing-secured-dgraph)
47-
* [Backups](/admin/admin-tasks/binary-backups#create-a-backup)
48-
* [Restore](/admin/admin-tasks/binary-backups#online-restore)
49-
5031
## First start
5132

5233
On first starting with a blank database:

docusaurus-docs/docs-graphql/graphql-dql/graphql-dql-schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ In particular, you can
157157
- use Dgraph DQL mutations but also Dgraph's [import tools](/migration/import-data) to populate the graph after you have deployed a GraphQL Schema. See [GraphQL data loading](/graphql/graphql-dql/graphql-data-loading)
158158
- use DQL to query the graph in the context of authorization rules and custom resolvers.
159159
- add knowledge to your graph such as meta-data, score, annotations, ..., but also relationships or relationships attributes (facets) that could be the result of similarity computation, threat detection a.s.o. The added data could be hidden from your GraphQL API clients but be available to logic written with DQL clients.
160-
- break things using DQL: DQL is powerful and is bypassing constraints expressed in the GraphQL schema. You can for example delete a node predicate that is mandatory in the GraphQL API! Hopefully there are ways to secure who can read/write/delete predicates. ( see the [ACL](/admin/enterprise-features/access-control-lists/)) section.
160+
- break things using DQL: DQL is powerful and is bypassing constraints expressed in the GraphQL schema. You can for example delete a node predicate that is mandatory in the GraphQL API! Hopefully there are ways to secure who can read/write/delete predicates. ( see the [ACL](/admin/admin-tasks/user-management-access-control)) section.
161161
- fix things using DQL: this is especially useful when doing GraphQL Schema updates which require some [data migrations](/graphql/graphql-dql/graphql-data-migration).
162162

163163

docusaurus-docs/docs-graphql/security/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ You can use any authentication method that is capable of generating such JWT tok
4747

4848

4949
### ACL
50-
Note that another token may be needed to access the system if ACL security is also enabled. See the [ACLs](/admin/enterprise-features/access-control-lists/) section for details. The ACLs are a separate security mechanism.
50+
Note that another token may be needed to access the system if ACL security is also enabled. See the [ACLs](/installation/configuration/enable-acl) section for details. The ACLs are a separate security mechanism.
5151

5252
### JWT Claims
5353

docusaurus-docs/docs-ratel/connection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Under the input box you have tree icons which gives you the status of the connec
2727
- Logging in: a "lock" icon.
2828

2929
:::tip
30-
To connect to a standard Dgraph instance, you only need to click on `Connect`. There's a specific section to [login using ACL](#acl-account) ([Enterprise feature](/admin/enterprise-features/access-control-lists/)).
30+
To connect to a standard Dgraph instance, you only need to click on `Connect`. There's a specific section to [login using ACL](#acl-account).
3131
:::
3232

3333
## Cluster Settings

docusaurus-docs/docs/clients/javascript/grpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ To facilitate debugging, [debug mode](#debug-mode) can be enabled for a client.
6262

6363
### Multi-tenancy
6464

65-
In [multi-tenancy](../../../admin/enterprise-features/multitenancy) environments, `dgraph-js` provides a new method `loginIntoNamespace()`,
65+
In [multi-tenancy](../../../admin/admin-tasks/multitenancy) environments, `dgraph-js` provides a new method `loginIntoNamespace()`,
6666
which will allow the users to login to a specific namespace.
6767

6868
In order to create a JavaScript client, and make the client login into namespace `123`:

docusaurus-docs/docs/migration/live-loader.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,13 @@ dgraph live \
195195

196196
## Enterprise Features
197197

198-
### Multi-tenancy (Enterprise Feature)
198+
### Multi-tenancy
199199

200-
Since [multi-tenancy](/admin/enterprise-features/multitenancy) requires ACL,
200+
Since multi-tenancy requires ACL,
201201
when using the Live loader you must provide the login credentials using the `--creds` flag.
202202
By default, Live loader loads the data into the user's namespace.
203203

204-
[Guardians of the Galaxy](/admin/enterprise-features/multitenancy#guardians-of-the-galaxy) can load the data into multiple namespaces.
204+
[Guardians of the Galaxy](/admin/admin-tasks/multitenancy#guardians-of-the-galaxy) can load the data into multiple namespaces.
205205
Using `--force-namespace`, a _Guardian_ can load the data into the namespace specified in the data and schema files.
206206

207207
:::note

docusaurus-docs/docs/migration/loading-csv-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ This JSON file can be loaded into Dgraph using the programmatic clients.
172172
}
173173
```
174174
:::note
175-
To reuse existing integer IDs from a CSV file as UIDs in Dgraph, use Dgraph Zero's [assign endpoint](/admin/dgraph-zero) before loading data to allocate a range of UIDs that can be safely assigned.
175+
To reuse existing integer IDs from a CSV file as UIDs in Dgraph, use Dgraph Zero's [assign endpoint](/admin/admin-endpoints) before loading data to allocate a range of UIDs that can be safely assigned.
176176
:::
177177
178178
4. Paste the output in the **Mutate** tab of **Console** in Ratel, and click **Run** to import data.

docusaurus-docs/docs_versioned_docs/version-v24.1/clients/javascript/grpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ To facilitate debugging, [debug mode](#debug-mode) can be enabled for a client.
6262

6363
### Multi-tenancy
6464

65-
In [multi-tenancy](../../../admin/enterprise-features/multitenancy) environments, `dgraph-js` provides a new method `loginIntoNamespace()`,
65+
In [multi-tenancy](../../../admin/admin-tasks/multitenancy) environments, `dgraph-js` provides a new method `loginIntoNamespace()`,
6666
which will allow the users to login to a specific namespace.
6767

6868
In order to create a JavaScript client, and make the client login into namespace `123`:

docusaurus-docs/docs_versioned_docs/version-v24.1/migration/live-loader.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,13 +195,13 @@ dgraph live \
195195

196196
## Enterprise Features
197197

198-
### Multi-tenancy (Enterprise Feature)
198+
### Multi-tenancy
199199

200-
Since [multi-tenancy](/admin/enterprise-features/multitenancy) requires ACL,
200+
Since multi-tenancy requires ACL,
201201
when using the Live loader you must provide the login credentials using the `--creds` flag.
202202
By default, Live loader loads the data into the user's namespace.
203203

204-
[Guardians of the Galaxy](/admin/enterprise-features/multitenancy#guardians-of-the-galaxy) can load the data into multiple namespaces.
204+
[Guardians of the Galaxy](/admin/admin-tasks/multitenancy#guardians-of-the-galaxy) can load the data into multiple namespaces.
205205
Using `--force-namespace`, a _Guardian_ can load the data into the namespace specified in the data and schema files.
206206

207207
:::note

0 commit comments

Comments
 (0)