Skip to content
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
28 changes: 17 additions & 11 deletions modules/ROOT/content-nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,31 @@
** xref:getting-started/graphql-self-hosted.adoc[]
* xref:getting-started/toolbox.adoc[]
* *Security*
* xref:security/configuration.adoc[]
* xref:security/authentication.adoc[]
* xref:security/authorization.adoc[]
* xref:security/subscriptions-authorization.adoc[]
* xref:security/impersonation-and-user-switching.adoc[]
* xref:security/operations.adoc[]
* xref:security/securing-a-graphql-api.adoc[]
* *Reference*
* xref:security/index.adoc[]
** xref:security/configuration.adoc[]
** xref:security/authentication.adoc[]
** xref:security/authorization.adoc[]
** xref:security/subscriptions-authorization.adoc[]
** xref:security/impersonation-and-user-switching.adoc[]
** xref:security/operations.adoc[]
* xref:neo4jgraphql-class.adoc[]
* xref:types/index.adoc[]
** xref:types/scalar.adoc[Scalar]
** xref:types/temporal.adoc[Temporal]
** xref:types/spatial.adoc[Spatial]
** xref:types/interfaces.adoc[Interfaces]
** xref:types/unions.adoc[Union]
** xref:types/relationships.adoc[]
* xref:filtering.adoc[]
* xref:neo4jgraphql-class.adoc[]
* xref:directives/index.adoc[]
** xref:directives/database-mapping.adoc[]
** xref:directives/autogeneration.adoc[]
** xref:directives/schema-configuration/index.adoc[]
*** xref:directives/schema-configuration/global-configuration.adoc[]
*** xref:directives/schema-configuration/type-configuration.adoc[]
Expand All @@ -36,6 +41,8 @@
** xref:directives/custom-logic.adoc[]
** xref:directives/custom-directives.adoc[]
* xref:filtering.adoc[]
* xref:queries-aggregations/index.adoc[Queries and aggregations]
** xref:queries-aggregations/queries.adoc[]
** xref:queries-aggregations/aggregations.adoc[]
Expand All @@ -55,9 +62,8 @@
* *How-To*
* xref:driver-configuration.adoc[]
* xref:graphql-modeling.adoc[]
* xref:security/securing-a-graphql-api.adoc[]
* xref:driver-configuration.adoc[]
* *Products*
Expand Down
2 changes: 1 addition & 1 deletion modules/ROOT/pages/security/configuration.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Configuration
= JWT configuration
:description: This page describes how to configure authentication and authorization features in the Neo4j GraphQL Library.

The Neo4j GraphQL Library uses JSON Web Token (JWT) authentication.
Expand Down
5 changes: 3 additions & 2 deletions modules/ROOT/pages/security/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ auth/authorization.adoc, auth/auth-directive.adoc, auth/subscriptions.adoc, \
auth/authorization/allow.adoc, auth/authorization/bind.adoc, auth/authorization/roles.adoc, \
auth/authorization/where.adoc, authentication-and-authorization/index.adoc

* xref::/security/configuration.adoc[Configuration] - Configuration of JSON Web Token (JWT) authentication with encoded or decoded JWTs.
* xref::/security/configuration.adoc[JWT configuration] - Configuration of JSON Web Token (JWT) authentication with encoded or decoded JWTs.
* xref::/security/authentication.adoc[Authentication] - Explicit authentication for different operations on different parts of your schema with the `@authentication` directive.
* xref::/security/authorization.adoc[Authorization] - Rule-based authorization filtering and validation with the `@authorization` directive.
* xref::/security/subscriptions-authorization.adoc[Subscriptions authorization] - Rule-based authorization for subscriptions with the `@subscriptionsAuthorization` directive.
* xref::/security/impersonation-and-user-switching.adoc[Impersonation and user switching] - How to set up impersonation and user switching features.
* xref::/security/operations.adoc[Operation examples] - GraphQL query examples on how to trigger the evaluation of different authentication and authorization rules.
* xref::/security/operations.adoc[Operation examples] - GraphQL query examples on how to trigger the evaluation of different authentication and authorization rules.
* xref::/security/securing-a-graphql-api.adoc[Securing a GraphQL API] - A tutorial to improve the security of a GraphQL API.