graphene federation causing dependency issue

graphene federation causing dependency issue


0

Trying to use Flask-GraphQL, graphene, starlette-graphene3 and graphene-federation to integrate python code with an existing graphql server. The code worked before trying to install graphene-federation.
Other trys have meant pip unable to resolve dependencies.
Packages before installing federation and graphql IDE runs locally.

    Flask==1.0.2
    Flask-GraphQL==2.0.0
    graphene==2.1.3
    graphql-core==2.1
    graphql-relay==0.4.5
    graphql-server-core==1.1.1`

If I install graphene-federation then there are dependency issues which are resolved by these packages

    Flask                 1.0.2
    Flask-GraphQL         2.0.0
    graphene              3.1
    graphene-federation   3.1.4
    graphene-sqlalchemy   2.1.0
    graphql-core          3.2.0
    graphql-relay         3.1.0
    graphql-server-core   1.1.1
    graphql-utilities     0.4.0
    starlette             0.25.0
    starlette-graphene3   0.6.0

But then this gives the error

ImportError: cannot import name 'get_default_backend' from 'graphql'

New contributor

developer169 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.


Load 6 more related questions


Show fewer related questions

0



Leave a Reply

Your email address will not be published. Required fields are marked *