We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Part of #89
In order to query with a filter, the
app.get(object_view, filters=filter)
requires explicitly passing refresh=True
What would help is if this line
knackpy/knackpy/app.py
Line 227 in cf23664
Line 232 in cf23664
also checked to see if filters was not None, or even easier would be to explicitly set refresh to True if filters are passed in
def get( self, identifier: str = None, refresh: bool = False, record_limit: int = None, filters: typing.Union[dict, list] = None, generate=False, ): ..... if not refresh : if not filters == None : refresh = True
Happy to create a PR if you want one
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Part of #89
In order to query with a filter, the
requires explicitly passing refresh=True
What would help is if this line
knackpy/knackpy/app.py
Line 227 in cf23664
and
knackpy/knackpy/app.py
Line 232 in cf23664
also checked to see if filters was not None, or even easier would be to explicitly set refresh to True if filters are passed in
Happy to create a PR if you want one
The text was updated successfully, but these errors were encountered: