Tagged Questions
0
votes
0answers
11 views
I want an EmbeddedListField of comments to show up only when I 'GET' a single post and not when I 'GET' a list of posts
I have a mongodb document 'Post' which has EmbeddedListField of 'comments'. I'm using tastypie to build the API layer and I want the comments to be listed with their body fields only when a single ...
1
vote
1answer
131 views
Cannot resolve field id django tastypie mongoengine
that seems this error is not depend on my code
i try using mongodb and mysql together without using django-norel
{"error_message": "Cannot resolve field \"id\"", "traceback": "Traceback (most recent ...
0
votes
0answers
110 views
How to make OneToMany relation over django-tastypie-mongoengine with django-registration?
Here are my resources:
class UserResource(resources.MongoEngineResource):
ratings = fields.ReferenceField(to='api.ActivityResource', attribute='ratings', full=True)
class Meta:
...
2
votes
0answers
98 views
tastypie mongoengine rest api for DynamicDocument
I am trying to save dynamic document in mongo using testypie and mongoengine my code is like this:
class Test(DynamicDocument):
pass
class TestResource(resources.MongoEngineResource):
class ...
0
votes
0answers
87 views
I am getting “cannot deepcopy this pattern object” using django-tastypie
I am getting "cannot deepcopy this pattern object" TypeError in urls.py
v1_api.register(MyResource())
MyResource is:
class MyResource(resources.MongoEngineResource):
class Meta:
...
1
vote
1answer
139 views
Tastypie Mongoengine ReferenceField dereference?
Trying to build REST interface with tastypie and mongodb.
I have schema
class ObjectsA(Document):
attr1 = StringField(max_length=12, required=True)
class ObjectsB(Docuemnt):
attr2 = ...
0
votes
1answer
209 views
how to config django for tastypie mongoengine in settings.py?
I just starting build restful api.
I start project cooking and create app to api.
I use tastypie and tastypie-mongoengine addon.
In settings.py I config like that
INSTALLED_APPS +=('tastypie',
...
0
votes
1answer
192 views
How to build Resful Webservice API for PhoneGap application using django and mongodb?
I want build restful webservice api handle phonegap application request.
I familiar with Python and Django.
Restful webservice is a social network like twitter, required to use mongodb.
everyone can ...
0
votes
0answers
81 views
Tastypie-MongoEngine : updating resource containing EmbeddedListField of Resource containing ReferenceField fails
I've got this schema :
class PipeResource(resources.MongoEngineResource):
exporters = EmbeddedListField(of='api.resources.EmbeddedExporterListResource',
...
0
votes
0answers
112 views
How can I update a Django Tastypie DictField using a REST client?
I have a User model:
class User(Document):
email = EmailField(required=True)
first_name = StringField(max_length=50)
tokens = DictField()
And resource:
class ...
0
votes
0answers
202 views
Tastypie - MongoEngine - Pre_save signal - Cancel saving on error
I'm using Django Tastypie and MongoEngine for MongoDB.
I need to do some attribute altering when saving a user: The email address needs to be unique. So I built a pre_save signal function which ...
2
votes
2answers
500 views
Tastypie resouce model
I m working on tastypie with mongoengine. I have core file but when i use them in resouce file it gives me error.
'QuerySet' object has no attribute 'model'
Resource file
class ...
2
votes
2answers
616 views
How do I create simple REST APIs in Django with a MongoEngine backend?
Tastypie looked promising, now not so much:
http://django-tastypie.readthedocs.org/en/latest/non_orm_data_sources.html
Should I use SimpleAPI or is there a better solution?