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

FIX: Correct query in PyCaosDB tutorial

parent ffc10475
No related branches found
No related tags found
1 merge request!71Release 0.9
Pipeline #29619 passed
......@@ -87,7 +87,7 @@ Ids can also come in handy when searching. Suppose you have some complicated con
>>> # This condition is not that complicated and long but let's suppose it was.
>>> record = db.execute_query("FIND Analysis with quality_factor=0.08", unique=True)
>>> record = db.execute_query("FIND MusicalAnalysis with quality_factor=0.08", unique=True)
>>> # You can use unique=True when you only expect one result Entity. An error will be
>>> # thrown if the number of results is unequal to 1 and the resulting object will be
>>> # an Entity and not a Container
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment