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
As a developer, I'd like to be able to have my IDE suggest/autocomplete attribute and check the type of value when creating a Query.
attribute
value
Query
Using the web SDK and TypeScript as an example, it would be cool to be able to do:
type Todo = Models.Document & { content: string; isComplete: boolean; } Query.equal<Todo>("
and then have my IDE suggest:
Then, if I pass a string into the value, it would show an error/warning because it should be a boolean.
The text was updated successfully, but these errors were encountered:
@stnguyen90 Kind of hacky and not my code but check this out: Typescript Playground
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
🔖 Feature description
As a developer, I'd like to be able to have my IDE suggest/autocomplete
attribute
and check the type ofvalue
when creating aQuery
.🎤 Pitch
Using the web SDK and TypeScript as an example, it would be cool to be able to do:
and then have my IDE suggest:
Then, if I pass a string into the value, it would show an error/warning because it should be a boolean.
👀 Have you spent some time to check if this issue has been raised before?
🏢 Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: