From 2aa7d70b1219c827a8b27c03636bc314cf0185a9 Mon Sep 17 00:00:00 2001 From: florian <f.spreckelsen@inidscale.com> Date: Mon, 24 Oct 2022 17:42:11 +0200 Subject: [PATCH] FIX: Correct query in PyCaosDB tutorial --- src/doc/tutorials/first_steps.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/tutorials/first_steps.rst b/src/doc/tutorials/first_steps.rst index 34b96bbe..486cd4d4 100644 --- a/src/doc/tutorials/first_steps.rst +++ b/src/doc/tutorials/first_steps.rst @@ -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 -- GitLab