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
2 changes: 1 addition & 1 deletion content/deploy/cli-command-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ The `--badger` superflag allows you to set many advanced [Badger options](https:

| Old flag | Old type | New superflag and options | New type | Applies to | Notes |
|---------:|:---------|---------:|:---------|:----:|:----:|
| | | **`--graphql`** | | | [GraphQL]({{< relref "graphql/overview.md" >}}) superflag |
| | | **`--graphql`** | | | GraphQL superflag |
| `--graphql_introspection` | bool | `introspection` | bool |`alpha`| Enables GraphQL schema introspection |
| `--graphql_debug` | bool | `debug` | bool |`alpha`| Enables debug mode in GraphQL |
| `--graphql_extensions` | bool | `extensions` | bool |`alpha`| Enables extensions in GraphQL response body |
Expand Down
2 changes: 1 addition & 1 deletion content/dgraph-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ For complex queries that the GraphQL specification does not support, Dgraph prov

As a native GraphQL database, Dgraph doesn’t have a relational database running in the background, or complex resolvers to map between database and GraphQL schemas. We often call this "single-schema development." The big time savings is that there are no GraphQL resolvers or custom queries needed to get started. All GraphQL fields are "resolved" simply by following our graph database edges to required fields. With single-schema development, you can change your GraphQL schema, insert data, and call your new APIs in seconds, not hours.

To learn more about Dgraph's GraphQL implementation, see this [GraphQL Overview]({{< relref "/graphql/overview" >}}). If you are a SQL user, check out:
If you are a SQL user, check out:

[Dgraph for SQL Users](https://dgraph.io/learn/courses/datamodel/sql-to-dgraph/overview/introduction/).

Expand Down
74 changes: 0 additions & 74 deletions content/graphql/overview/index.md

This file was deleted.

4 changes: 2 additions & 2 deletions scripts/branchdeploy.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ RESET='\033[0m'
# argument $1 is the netlify base url
# argument $2 is the $HEAD netlify variable which is the branch name

echo "branchdeploy URL $1 branch $2"
releaseVersion=$(echo $2 | sed 's/.*\///')

echo "branchdeploy => '$releaseVersion'"
echo "version '$releaseVersion'"
VERSION_STRING="$releaseVersion"
# In Unix environments, env variables should also be exported to be seen by Hugo
export VERSIONS=${VERSION_STRING}
Expand Down