Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dgraph
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
dgraph
Commits
fa196f0c
Commit
fa196f0c
authored
9 years ago
by
Manish R Jain
Browse files
Options
Downloads
Patches
Plain Diff
Section on Queries and Mutations
parent
b9ba5a9f
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+45
-20
45 additions, 20 deletions
README.md
with
45 additions
and
20 deletions
README.md
+
45
−
20
View file @
fa196f0c
...
...
@@ -10,6 +10,13 @@ DGraph's goal is to provide [Google](https://www.google.com) production level sc
with low enough latency to be serving real time user queries, over terabytes of structured data.
DGraph supports
[
GraphQL
](
http://graphql.org/
)
as query language, and responds in
[
JSON
](
http://www.json.org/
)
.
The README is divided into these sections:
-
[
Current Status
](
#current-status
)
-
[
Quick Testing
](
#quick-testing
)
-
[
Installation
](
#installation
)
-
[
Usage
](
#usage
)
-
[
Queries and Mutations
](
#queries-and-mutations
)
-
[
Contact
](
#contact
)
## Current Status
...
...
@@ -90,26 +97,6 @@ You can hit any of the 3 processes, they'll produce the same results.
`curl localhost:8081/query -XPOST -d '{}'`
## Mutations
Note that the mutation syntax uses
[
RDF NQuad format
](
https://www.w3.org/TR/n-quads/
)
.
```
mutation {
set {
<subject> <predicate> <objectid> .
<subject> <predicate> "Object Value" .
<subject> <predicate> "объект"@ru .
_uid_:0xabcdef <predicate> <objectid> .
}
}
```
You can batch multiple mutations in a single GraphQL query.
DGraph would assume that any data in
`<>`
is an external id (XID),
and it would retrieve or assign unique internal ids (UID) automatically for these.
You can also directly specify the UID like so:
`_uid_: 0xhexval`
or
`_uid_: intval`
.
Note that a
`delete`
operation isn't supported yet.
# Installation
## Directly on host machine
...
...
@@ -275,6 +262,44 @@ Consecutive runs of the same query took much lesser time (80 to 100ms), due to p
}
```
## Queries and Mutations
You can see a list of
[
sample queries here
](
https://github.com/dgraph-io/dgraph/wiki/Test-Queries
)
.
DGraph also supports mutations via GraphQL syntax.
Because GraphQL mutations don't contain complete data, the mutation syntax uses
[
RDF NQuad format
](
https://www.w3.org/TR/n-quads/
)
.
```
mutation {
set {
<subject> <predicate> <objectid> .
<subject> <predicate> "Object Value" .
<subject> <predicate> "объект"@ru .
_uid_:0xabcdef <predicate> <objectid> .
}
}
```
You can batch multiple NQuads in a single GraphQL query.
DGraph would assume that any data in
`<>`
is an external id (XID),
and it would retrieve or assign unique internal ids (UID) automatically for these.
You can also directly specify the UID like so:
`_uid_: 0xhexval`
or
`_uid_: intval`
.
Note that a
`delete`
operation isn't supported yet.
In addition, you could couple a mutation with a follow up query, in a single GraphQL query like so.
```
mutation {
set {
<alice> <follows> <greg> .
}
}
query {
me(_xid_: alice) {
follows
}
}
```
The query portion is executed after the mutation, so this would return
`greg`
as one of the results.
# Contributing to DGraph
-
Please see
[
this wiki page
](
https://github.com/dgraph-io/dgraph/wiki/Contributing-to-DGraph
)
for guidelines on contributions.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment