Fix ensuring that record id matching detects correct edge id (#4827)
This commit is contained in:
parent
19dc7a3ac7
commit
bb8d4b41ab
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ impl Document {
|
||||||
// The out field is a match, so don't error
|
// The out field is a match, so don't error
|
||||||
Value::Thing(v) if v.eq(r) => (),
|
Value::Thing(v) if v.eq(r) => (),
|
||||||
// The out is a match, so don't error
|
// The out is a match, so don't error
|
||||||
v if l.id.is(&v) => (),
|
v if r.id.is(&v) => (),
|
||||||
// The out field does not match
|
// The out field does not match
|
||||||
v => {
|
v => {
|
||||||
return Err(Error::OutMismatch {
|
return Err(Error::OutMismatch {
|
||||||
|
|
Loading…
Reference in a new issue