Skip to content
#

graphene

Here are 304 public repositories matching this topic...

abhaybhargav
abhaybhargav commented Apr 9, 2020

Hi

I have been using graphene-mongo for a while now. I use all resolvers and mutations post validation of an Access token in the HTTP Authorization header. However, I am not aware of how I can do that for a MongoengineCollectionField

For example, I have defined it as follows

class Query(graphene.ObjectType):
    all_projects_to_models = MongoengineConnectionField(Project)
good first issue
wagtail-grapple
sks444
sks444 commented Nov 9, 2021
from wagtail.core.fields import RichTextField

@register_snippet
class TestSnippet(models.Model):
    title = models.CharField(max_length=50)
    description = RichTextField(
        blank=True
    )

    panels = [
        FieldPanel('title'),
        FieldPanel('description'),
    ]

    graphql_fields = [
        GraphQLString('title', required=True),
        GraphQLS
bug good first issue
arcnmx
arcnmx commented Jan 24, 2022

The relationship between these 3 types isn't very clear from the documentation, and conversion traits between them don't seem to exist as one might expect (plus iterator conversions may also be useful?). The LogLevelFlags docs even mention log_set_handler and log_set_fatal_mask, which confusingly both take a `LogLevels

enhancement good first issue glib

Improve this page

Add a description, image, and links to the graphene topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the graphene topic, visit your repo's landing page and select "manage topics."

Learn more