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
Using java annotations directly has no effect. One have to use the scala type aliases.
Ex:
import io.sphere.mongo.generic.annotations.MongoKey case class Student( @MongoKey("_id") id: String )
does not work.
The following works
import io.sphere.mongo.generic.MongoKey case class Student( @MongoKey("_id") id: String )
The text was updated successfully, but these errors were encountered:
#52 was a try to fix that, but it does not really fix the issue.
Sorry, something went wrong.
An experimental branch is using magnolia for the derivation. It is only using scala annotation, fixing this issue: https://github.com/sphereio/sphere-scala-libs/tree/derive_with_magnolia
No branches or pull requests
Using java annotations directly has no effect.
One have to use the scala type aliases.
Ex:
does not work.
The following works
The text was updated successfully, but these errors were encountered: