Skip to content
Merged
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
4 changes: 2 additions & 2 deletions worker/mutation.go
Original file line number Diff line number Diff line change
Expand Up @@ -349,10 +349,10 @@ func ValidateAndConvert(edge *pb.DirectedEdge, su *pb.SchemaUpdate) error {
return nil

case !schemaType.IsScalar() && storageType.IsScalar():
return errors.Errorf("Input for predicate %s of type uid is scalar", edge.Attr)
return errors.Errorf("Input for predicate %q of type uid is scalar. Edge: %v", edge.Attr, edge)

case schemaType.IsScalar() && !storageType.IsScalar():
return errors.Errorf("Input for predicate %s of type scalar is uid. Edge: %v", edge.Attr, edge)
return errors.Errorf("Input for predicate %q of type scalar is uid. Edge: %v", edge.Attr, edge)

// The suggested storage type matches the schema, OK!
case storageType == schemaType && schemaType != types.DefaultID:
Expand Down