Skip to content

Graphql dependency error #191

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion graphene_mongo/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from graphene.types.argument import to_arguments
from graphene.types.dynamic import Dynamic
from graphene.types.structures import Structure
from graphql_relay.connection.arrayconnection import cursor_to_offset
from graphql_relay.connection.array_connection import cursor_to_offset
from mongoengine import QuerySet

from .advanced_types import (
Expand Down
2 changes: 1 addition & 1 deletion graphene_mongo/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from graphene.utils.trim_docstring import trim_docstring
# from graphql.utils.ast_to_dict import ast_to_dict
from graphql import FieldNode
from graphql_relay.connection.arrayconnection import offset_to_cursor
from graphql_relay.connection.array_connection import offset_to_cursor


def get_model_fields(model, excluding=None):
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ coveralls==3.0.1; python_version > '3.5'
flake8==3.7.9
flake8-per-file-ignores==0.6
future==0.18.2
graphene==3.0b7
graphene==3.0
promise==2.3
mongoengine==0.19.1; python_version <= '3.5'
mongoengine==0.23.0; python_version > '3.5'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
keywords="api graphql protocol rest relay graphene mongo mongoengine",
packages=find_packages(exclude=["tests"]),
install_requires=[
"graphene==3.0b7",
"graphene==3.0",
"promise==2.3",
"mongoengine>=0.23.0",
"singledispatch>=3.4.0.3",
Expand Down