Skip to main content

Graphene Mongoengine integration

Project description

Build Status Coverage Status Documentation Status PyPI version PyPI pyversions Downloads

Lint Test Package

Graphene-Mongo

A Mongoengine integration for Graphene.

Installation

For installing graphene-mongo, just run this command in your shell

pip install graphene-mongo

Examples

Here is a simple Mongoengine model as models.py:

from mongoengine import Document
from mongoengine.fields import StringField


class User(Document):
    meta = {'collection': 'user'}
    first_name = StringField(required=True)
    last_name = StringField(required=True)

To create a GraphQL schema and sync executor; for it you simply have to write the following:

import graphene

from graphene_mongo import MongoengineObjectType

from .models import User as UserModel


class User(MongoengineObjectType):
    class Meta:
        model = UserModel


class Query(graphene.ObjectType):
    users = graphene.List(User)

    def resolve_users(self, info):
        return list(UserModel.objects.all())


schema = graphene.Schema(query=Query)

Then you can simply query the schema:

query = '''
    query {
        users {
            firstName,
            lastName
        }
    }
'''
result = await schema.execute(query)

To create a GraphQL schema and async executor; for it you simply have to write the following:

import graphene

from graphene_mongo import AsyncMongoengineObjectType
from graphene_mongo.utils import sync_to_async
from concurrent.futures import ThreadPoolExecutor

from .models import User as UserModel


class User(AsyncMongoengineObjectType):
    class Meta:
        model = UserModel


class Query(graphene.ObjectType):
    users = graphene.List(User)

    async def resolve_users(self, info):
        return await sync_to_async(list, thread_sensitive=False,
                             executor=ThreadPoolExecutor())(UserModel.objects.all())


schema = graphene.Schema(query=Query)

Then you can simply query the schema:

query = '''
    query {
        users {
            firstName,
            lastName
        }
    }
'''
result = await schema.execute_async(query)

To learn more check out the following examples:

Contributing

After cloning this repo, ensure dependencies are installed by running:

pip install -r requirements.txt

After developing, the full test suite can be evaluated by running:

make test

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

graphene_mongo-0.4.3.tar.gz (78.1 kB view details)

Uploaded Source

Built Distribution

graphene_mongo-0.4.3-py3-none-any.whl (89.7 kB view details)

Uploaded Python 3

File details

Details for the file graphene_mongo-0.4.3.tar.gz.

File metadata

  • Download URL: graphene_mongo-0.4.3.tar.gz
  • Upload date:
  • Size: 78.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for graphene_mongo-0.4.3.tar.gz
Algorithm Hash digest
SHA256 80897cfb596b82d3b2f19543335b53269709ac0d26684d63e652c367b7c52170
MD5 123f1b30f4a3b3681c7e0fa1732a1bc4
BLAKE2b-256 30ab078b9c36b5518f185e3d1bbf01ac360ee154a1dc876489a2c0f1a791b479

See more details on using hashes here.

Provenance

File details

Details for the file graphene_mongo-0.4.3-py3-none-any.whl.

File metadata

File hashes

Hashes for graphene_mongo-0.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 61439a496682e4f257594096739907172327b36f1626da77e9e8e40cc9545ba6
MD5 09e283c383845a96038159e4eee934e0
BLAKE2b-256 bfbd45d36bc18c5f57a791029302d624841d843b681730781be3e925d345f3ef

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page