Skip to content

Commit cd493a2

Browse files
authored
Merge pull request #307 from opsmill/wvd-20250319-fix-sdk-qeury-data-guide
Update discovering available filters section in data query guide
2 parents d040800 + 4c42310 commit cd493a2

File tree

1 file changed

+1
-20
lines changed

1 file changed

+1
-20
lines changed

docs/docs/python-sdk/guides/query_data.mdx

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,26 +19,7 @@ The `get` and `filters` query methods allow you to use filters. Filters specify
1919

2020
### Discovering available filters
2121

22-
The easiest way to discover the available filters for a kind of node is by querying the schema.
23-
24-
<Tabs groupId="async-sync">
25-
<TabItem value="Async" default>
26-
27-
```python
28-
tag_schema = await client.schema.get("BuiltinTag")
29-
print(tag_schema.filters)
30-
```
31-
32-
</TabItem>
33-
<TabItem value="Sync">
34-
35-
```python
36-
tag_schema = client.schema.get("BuiltinTag")
37-
print(tag_schema.filters)
38-
```
39-
40-
</TabItem>
41-
</Tabs>
22+
The easiest way to discover the available filters for a kind of node is by opening the GraphQLi Explorer in the GraphQL sandbox. Under each GraphQL query you will find the available filters.
4223

4324
### Attribute filters
4425

0 commit comments

Comments
 (0)