Skip to content

Commit e90faeb

Browse files
author
Abel Milash
committed
Update README
1 parent 7d09d79 commit e90faeb

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,6 @@ query = (client.query.builder("contact")
258258
.filter_eq("statecode", 0) # statecode eq 0
259259
.filter_gt("revenue", 1000000) # revenue gt 1000000
260260
.filter_contains("name", "Corp") # contains(name, 'Corp')
261-
.filter_in("statecode", [0, 1]) # statecode in (0, 1)
262261
.filter_between("revenue", 100000, 500000) # (revenue ge 100000 and revenue le 500000)
263262
.filter_null("telephone1") # telephone1 eq null
264263
)
@@ -267,7 +266,7 @@ query = (client.query.builder("contact")
267266
For complex logic (OR, NOT, grouping), use the composable expression tree with `where()`:
268267

269268
```python
270-
from PowerPlatform.Dataverse.models.filters import eq, gt, filter_in, between
269+
from PowerPlatform.Dataverse.models.filters import eq, gt, between
271270

272271
# OR conditions: (statecode = 0 OR statecode = 1) AND revenue > 100k
273272
for record in (client.query.builder("account")

0 commit comments

Comments
 (0)