-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
Should it be possible to set anything as a display type in Store.insert()
?
#130
Comments
I understand that this means a |
This is not exactly the subject of this issue. We should have clarified. The validity of the value of the parameter This data class is strongly typed, so if user specified one The question here is : do we need to check earlier that data are compliant to In my opinion, this is not necessary as it could broke the workflow. |
Got it. Yes I agree with your conclusion. |
Closed by #303 |
Currently in
Store.insert()
we perform no check that the input display type is a properDisplayType
. This is because the behaviour when this happens was not specified.The current behaviour enables a use-case of a user defining their own type, but it conflicts with our approach to strongly type everything in order to extract intelligence reliably.
The text was updated successfully, but these errors were encountered: