Skip to content

Commit 50edb74

Browse files
committedJan 25, 2024
fix(): doc
1 parent 3dce623 commit 50edb74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ resource.list('Patient').where('name', 'John');
134134
Or, you want to find all patients with name John or Steve
135135

136136
```typescript
137-
resource.list('Patient')where('name', ['John', 'Steve']);
137+
resource.list('Patient').where('name', ['John', 'Steve']);
138138
```
139139

140140
Also, method where support prefixes for numbers and date, just pass it as third parameter

0 commit comments

Comments
 (0)
Please sign in to comment.