Zach
12/14/2022, 11:42 PMDagsterImportError: Encountered ImportError: `cannot import name 'introspection_query' from 'graphql' (/databricks/python/lib/python3.8/site-packages/graphql/__init__.py)` while importing module repo. Local modules were resolved using the working directory `/Users/zachary.romer/Documents/empirico/etxlib`. If another working directory should be used, please explicitly specify the appropriate path using the `-d` or `--working-directory` for CLI based targets or the `working_directory` configuration option for workspace targets.
it looks like the gql
library that's referenced in dagster-graphql
isn't pinned, so it didn't get updated when I updated my environment. does anyone know what minimum version of gql
is required by dagster-graphql
? looks like a breaking change in that library is causing issues for me, but I'm having some dependency resolution issues with other requirements when I try pinning it to 3.0.0+jamie
12/15/2022, 3:50 PMalex
12/15/2022, 3:55 PMZach
12/15/2022, 4:12 PMalex
12/15/2022, 4:21 PMgql
is at technically but i think its graphene>3
-> graphql>3
and due to that gql
should resolve to >3
to be happy with the graphql>3
Zach
12/15/2022, 4:27 PMalex
12/15/2022, 4:45 PM