Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2c810e9
fix(docs): update version (#331)
skrdgraph Oct 20, 2022
4ba1c95
[Docs] Access Control Lists : add the command and random keys (#333)
Rajakavitha1 Oct 27, 2022
4096ae4
[Docs] Encryption at Rest: added a note for macOS (#334)
Rajakavitha1 Oct 27, 2022
d01e2ed
docs(release): Dgraph v22.0.0 release (#335)
MichelDiz Oct 31, 2022
b05f66c
Cherry pick/v22.0/glossary (#364)
rderbier Dec 14, 2022
004bba5
Cherry pick/v22.0/glossary update (#387)
rderbier Jan 13, 2023
5e9f635
Merge branch 'release/v22.0'
rderbier Jan 17, 2023
3fa1a02
Revamp(install) : merge to v22.0 (#409)
rderbier Jan 18, 2023
ce08046
change build script for branches (#425)
rderbier Jan 27, 2023
84c8c49
Algolia/v22.0 (#427)
rderbier Jan 30, 2023
3804b5c
Algolia/v22.0 (#429)
rderbier Jan 31, 2023
b91145a
Algolia/v22.0 (#430)
rderbier Jan 31, 2023
fae5fb3
Algolia/v22.0 (#431)
rderbier Jan 31, 2023
43b6bbc
remove graphql overview and references (#433)
rderbier Feb 1, 2023
6cda032
remove graphql overview and references (#434)
rderbier Feb 1, 2023
b95fd77
add v22.0.2 (#435)
rderbier Feb 1, 2023
97665b4
Revamp/import data (#437)
rderbier Feb 1, 2023
d43480f
Dgraph overview diagram (#438)
rderbier Feb 1, 2023
034c80b
upgrade hugo version to 0.91 (#443)
rderbier Feb 2, 2023
568aaa9
Docs(Lambda): Fix incorrect environment variable example (#449)
matthewmcneely Feb 10, 2023
15c3c6f
move type-system (#452)
rderbier Feb 13, 2023
68de9f6
[REVAMP]: move predicate types (ex schema) to DQL section (#454)
rderbier Feb 14, 2023
5a3f415
Revamp/howto drop data (#451)
rderbier Feb 14, 2023
a9ee580
Revamp/mutation syntax (#459)
rderbier Feb 14, 2023
399de45
revamp doc home (#463)
rderbier Feb 14, 2023
84068c6
Delete .hugo_build.lock
rderbier Feb 14, 2023
e992f39
ignore lock files
rderbier Feb 14, 2023
86d1133
graphql quickstart (#465)
rderbier Feb 15, 2023
4717578
avoid conflicts with cloud doc urls
rderbier Feb 15, 2023
a9c8f4c
re-organize graphql section (#466)
rderbier Feb 15, 2023
bc84b61
correct api ref
rderbier Feb 15, 2023
67a437d
move cloud pages in this repo (#468)
rderbier Feb 16, 2023
e8dbca7
move cloud folder
rderbier Feb 16, 2023
30a1ac0
gqlschema section update
rderbier Feb 16, 2023
cc430e4
Merge branch 'main' into revamp/correct-gqlschema
rderbier Feb 16, 2023
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
2 changes: 1 addition & 1 deletion content/cloud/cloud-api/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
title = "Dgraph Cloud API"
weight = 15
[menu.main]
identifier = "cloud"
identifier = "cloud-api"
parent = "cloud"
+++
1 change: 1 addition & 0 deletions content/dql-syntax/dql-rdf.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ The supported [RDF datatypes](https://www.w3.org/TR/rdf11-concepts/#section-Data




### Facets
#### Creating a list with facets

Expand Down
2 changes: 1 addition & 1 deletion content/graphql/schema/_index.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
+++
title = "Schema"
[menu.main]
identifier = "schema"
identifier = "gqlschema"
parent = "graphql"
weight = 2
+++
Expand Down
6 changes: 3 additions & 3 deletions content/graphql/schema/authorization/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title = "Authorization"
weight = 5
[menu.main]
identifier = "authorization"
parent = "schema"
parent = "gqlschema"
+++

Dgraph's GraphQL implementation comes with built-in authorization. This lets you annotate your schema with rules that determine who can query and mutate your data.
Expand Down Expand Up @@ -54,7 +54,7 @@ You can authenticate your users using the following methods:
Dgraph's GraphQL implementation is completely flexible about how your app does
authentication; instead, Dgraph focuses on authorization.

Dgraph's GraphQL endpoint supports both symmetric (secret-based) and asymmetric (public key)
Dgraph's GraphQL endpoint supports both symmetric (secret-based) and asymmetric (public key)
encryption. The connection between Dgraph and your authentication mechanism can
be a JSON Web Key (JWK) URL or a signed JSON Web Token (JWT). So, you can provide
Dgraph with the public key of the JWT signer (such as Firebase or Auth0) and
Expand Down Expand Up @@ -169,4 +169,4 @@ The authorization variables include the rest of the given claims along with the

{{% notice "note" %}}
In cases where the same variable is present in both custom claims and standard claims, the variable value in the custom claim takes precedence.
{{% /notice %}}
{{% /notice %}}
2 changes: 1 addition & 1 deletion content/graphql/schema/dgraph-schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title = "Dgraph Schema Fragment"
description = "While editing your schema, this GraphQL schema fragment can be useful. It sets up the definitions of the directives that you’ll use in your schema."
weight = 9
[menu.main]
parent = "schema"
parent = "gqlschema"
+++

While editing your schema, you might find it useful to include this GraphQL schema fragment. It sets up the definitions of the directives, etc. (like `@search`) that you'll use in your schema. If your editor is GraphQL aware, it may give you errors if you don't have this available and context sensitive help if you do.
Expand Down
4 changes: 2 additions & 2 deletions content/graphql/schema/directives/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title = "Directives"
weight = 4
[menu.main]
identifier = "directives"
parent = "schema"
parent = "gqlschema"
+++

The list of all directives supported by Dgraph.
Expand Down Expand Up @@ -111,4 +111,4 @@ Reference: [Subscriptions](/graphql/subscriptions)

The `@lambdaOnMutate` directive allows you to listen to mutation events(`add`/`update`/`delete`). Depending on the defined events and the occurrence of a mutation event, `@lambdaOnMutate` triggers the appropriate lambda function implemented on a given lambda server.

Reference: [LambdaOnMutate directive](/graphql/lambda/webhook)
Reference: [LambdaOnMutate directive](/graphql/lambda/webhook)
2 changes: 1 addition & 1 deletion content/graphql/schema/documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title = "Documentation and Comments"
description = "Dgraph accepts GraphQL documentation comments, which get passed through to the generated API and shown as documentation in GraphQL tools."
weight = 7
[menu.main]
parent = "schema"
parent = "gqlschema"
+++

## Schema Documentation Processed by Generated API
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 @@ -3,7 +3,7 @@ title = "Relationships"
description = "All the data in your app form a GraphQL data graph. That graph has nodes of particular types and relationships between the nodes to form the data graph."
weight = 2
[menu.main]
parent = "schema"
parent = "gqlschema"
+++

All the data in your app form a GraphQL data graph. That graph has nodes of particular types and relationships between the nodes to form the data graph.
Expand Down
2 changes: 1 addition & 1 deletion content/graphql/schema/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title = "Schema Migration"
description = "This document describes all the things that you need to take care while doing a schema update or migration."
weight = 5
[menu.main]
parent = "schema"
parent = "gqlschema"
identifier = "schema-migration"
+++

Expand Down
2 changes: 1 addition & 1 deletion content/graphql/schema/reserved.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title = "Reserved Names"
description = "This document provides the full list of names that are reserved and can’t be used to define any other identifiers."
weight = 3
[menu.main]
parent = "schema"
parent = "gqlschema"
+++

The following names are reserved and can't be used to define any other identifiers:
Expand Down
2 changes: 1 addition & 1 deletion content/graphql/schema/types.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title = "Types"
description = "How to use GraphQL types to set a GraphQL schema for the Dgraph database. Includes scalars, enums, types, interfaces, union, password, & geolocation types."
weight = 1
[menu.main]
parent = "schema"
parent = "gqlschema"
+++

This page describes how to use GraphQL types to set the a GraphQL schema for
Expand Down