Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 414 Bytes

README.md

File metadata and controls

15 lines (10 loc) · 414 Bytes

graphene-mongoengine

Supporting mongonengine connection for graphene

Inspired in graphene_django, we can use this package to manage information stored in MongoDB.

For doing this, we will use Mongoengine package. It's quite simple:

`

from graphene_mongoengine import MongoEngineObjectType

class MyExampleNode(MongoEngineObjectType):
    class Meta:
        document = MyExampleModel

`