-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Labels
area/upsertIssues related to upsert operations.Issues related to upsert operations.kind/bugSomething is broken.Something is broken.status/acceptedWe accept to investigate/work on it.We accept to investigate/work on it.
Description
What version of Dgraph are you using?
Latest
Have you tried reproducing the issue with the latest release?
Yes
What is the hardware spec (RAM, OS)?
N/A
Steps to reproduce the issue (command/config used to run Dgraph).
Mutation Sample
I added "dgraph.type" just to be sure.
{
"set": [
{
"type": "node",
"dgraph.type": "Node",
"id": "0",
"labels": ["Movie"],
"properties": {
"tagline": "Welcome to the Real World",
"title": "The Matrix",
"released": 1999,
"dgraph.type": "Properties"
}
}
]
}type Node {
properties
type
id
labels
tagline
title
released
}
type Properties {
tagline
title
released
}Query example
{
movies(func: has(properties)) @filter(eq(type,"node")){
type
id
labels
dgraph.type
properties {
tagline
title
released
}
tagline
title
released
}
}Run the Upsert Block
upsert {
query {
movies(func: has(type)) @filter(has(properties)){
v as uid
Labels as labels
properties {
Title as title
Released as released
Tagline as tagline
}
}
}
mutation {
set {
uid(v) <migrationDone> "True" .
uid(v) <title> val(Title) .
uid(v) <dgraph.type> val(Labels) .
uid(v) <released> val(Released) .
uid(v) <tagline> val(Tagline) .
}
}
}Expected behaviour and actual result.
This operation should be able to copy the values in the variables of the nested block, "properties". Thus allowing a kind of "migration" using Upsert Block. This feature is also equivalent to "merge". Where we collect the values of the nested block, we paste in the target node and delete the nested block right after.
Metadata
Metadata
Assignees
Labels
area/upsertIssues related to upsert operations.Issues related to upsert operations.kind/bugSomething is broken.Something is broken.status/acceptedWe accept to investigate/work on it.We accept to investigate/work on it.