Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 1 addition & 20 deletions docs/docs/python-sdk/guides/query_data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,26 +19,7 @@ The `get` and `filters` query methods allow you to use filters. Filters specify

### Discovering available filters

The easiest way to discover the available filters for a kind of node is by querying the schema.

<Tabs groupId="async-sync">
<TabItem value="Async" default>

```python
tag_schema = await client.schema.get("BuiltinTag")
print(tag_schema.filters)
```

</TabItem>
<TabItem value="Sync">

```python
tag_schema = client.schema.get("BuiltinTag")
print(tag_schema.filters)
```

</TabItem>
</Tabs>
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.

### Attribute filters

Expand Down