Skip to content

Commit

Permalink
update string functions doc
Browse files Browse the repository at this point in the history
  • Loading branch information
baxiry committed Jul 30, 2024
1 parent caa39bb commit e511348
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions static/shell.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,16 @@ <h4>examples</h4>
<p>is str contains 'ad' ? :</p>
{action:"findMany", collection:"test", match:{name:{$c:"ad"}}}

<p>is str not starts with 'ad' ? :</p>
{action:"findMany", collection:"test", match:{name:{$nst:"ad"}}}

<p>is str not ends with 'ad' ? :</p>
{action:"findMany", collection:"test", match:{name:{$nen:"ad"}}}

<p>is str not contains 'ad' ? :</p>
{action:"findMany", collection:"test", match:{name:{$nc:"ad"}}}


<br/>
<br/>
<br/>
Expand Down

0 comments on commit e511348

Please sign in to comment.