Skip to content
Snippets Groups Projects
Commit a24ae221 authored by florian's avatar florian
Browse files

FIX: Make property query compatible with new FIND * syntax

parent f613d376
Branches
Tags
1 merge request!65DOC: Added CITATION.cff to the list of files in the release guide where the...
Pipeline #32794 passed with warnings
......@@ -141,7 +141,7 @@ class DataModel(dict):
# in via the extern keyword:
ref = db.Property(name=ent.name).retrieve()
else:
query = db.Query(f"FIND * with id={ent.id}")
query = db.Query(f"FIND ENTITY with id={ent.id}")
ref = query.execute(unique=True)
diff = (describe_diff(*compare_entities(ent, ref
), name=ent.name))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment