Hello. How are these params meant to be used with ...
# community-help
e
Hello. How are these params meant to be used with the python client? The method doesn't expect any argumnets
l
In the json you send, you just add this field:
Copy code
query = {
            "q": "*",
            "query_by": "yourfield",
            "exclude_fields": "<comma-separated-list>",
            "include_fields": "<comma-separated-list>",
        }
🙌 1
f
Exactly what @Lionel Ovaert mentioned
e
Hi @Lionel Ovaert. I know that is possible with the
search
method My question mentions the
retrieve
method
f
Oh, you're right, we don't pass any parameters to the retrieve method! I'll get that fixed.
e
Thank you @Fanis Tharropoulos
f
e
great