From 1f8dd4c1ce4279e2fcd15e7145ce37cf01b97374 Mon Sep 17 00:00:00 2001 From: "abby.huang" <78209557+abby-cyber@users.noreply.github.com> Date: Tue, 25 Apr 2023 21:18:00 +0800 Subject: [PATCH] Update 1.search-with-text-based-index.md (#2729) --- .../1.search-with-text-based-index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-2.0/3.ngql-guide/15.full-text-index-statements/1.search-with-text-based-index.md b/docs-2.0/3.ngql-guide/15.full-text-index-statements/1.search-with-text-based-index.md index d5120423162..a61e6fd6bdd 100644 --- a/docs-2.0/3.ngql-guide/15.full-text-index-statements/1.search-with-text-based-index.md +++ b/docs-2.0/3.ngql-guide/15.full-text-index-statements/1.search-with-text-based-index.md @@ -145,7 +145,7 @@ nebula> LOOKUP ON player WHERE WILDCARD(player.name, "*ri*") YIELD player.name, | "Blake Griffin" | 30 | +-----------------+-----+ -nebula> LOOKUP ON player WHERE WILDCARD(player.name, "*ri*") | YIELD count(*); +nebula> LOOKUP ON player WHERE WILDCARD(player.name, "*ri*") YIELD player.name, player.age | YIELD count(*); +----------+ | count(*) | +----------+