Skip to content

Documentation Issues #632

Closed
Closed
@changeling

Description

@changeling

There seem to be quite a few issues in the docs. Just ran into these:

In http://docs.graphene-python.org/projects/django/en/latest/queries/, under Full example at the top:

    questions = graphene.List(QuestionType)
    question = graphene.Field(Question, question_id=graphene.String())

Should read:

    questions = graphene.List(QuestionType)
    question = graphene.Field(QuestionType, question_id=graphene.String())

At the bottom, again under Full Example in the Relay section:

class QuestionType(DjangoObjectType):
    class Meta:
        model = Question
        interaces = (relay.Node,)

Should read:

class QuestionType(DjangoObjectType):
    class Meta:
        model = Question
        interfaces = (relay.Node,)

Perhaps this issue (or does one exist already?) would be a good place to encourage folks to post specific issues in the Documentation?

If these are still present when I have more time, I'll fix these two in a PR, but that might be several days.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions