Skip to content

Commit

Permalink
#8 Adds documentation regarding usage of ListDisplayFilter, ObjectDis…
Browse files Browse the repository at this point in the history
…playFilter, SQLDisplayFilter
  • Loading branch information
bytebutcher committed Jul 7, 2023
1 parent 8c63388 commit 2774f17
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/USER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ data = [

filter_query = "age < 40"
field_names = ["name", "actor", "age", "gender", "killed"]
filtered_data = ListDisplayFilter(data).filter(filter_query)
filtered_data = ListDisplayFilter(data, field_names).filter(filter_query)
print(filtered_data)
```

Expand All @@ -167,6 +167,8 @@ filtered_data = SQLDisplayFilter(connection, table_name).filter(filter_query)
print(filtered_data)
```

For a more advanced example checkout the [SQLite Display Filter example](#54-sqlite-display-filter).

## 4. Query Language

The query language provides a wide range of operations, comparisons, and
Expand Down

0 comments on commit 2774f17

Please sign in to comment.