I am newbie to mongodb and also to reactive mongo and I'm trying to integrate this example to my project https://github.com/sgodbillon/reactivemongo-demo-app Firstly I would like to work only with class article but when I integrate the model and the controller I get this error:
No Json serializer as JsObject found for type play.api.libs.json.JsObject. Try to implement an implicit OWrites or OFormat for this type.
for this line in the controller:
63 // the cursor of documents
64 val found = collection.find(query).cursor[Article]