https://dagster.io/ logo
#ask-community
Title
# ask-community
c

Chris Evans

03/25/2022, 11:33 PM
Afternoon guys, Just wanted to flag the following... Running into this graph-ql error after an upgrade to
0.14.6
. So far have only seen it on a graph/job overview page
Copy code
Operation name: PipelineExplorerRootQuery

Message: 'List.Any'

Path: ["pipelineSnapshotOrError","solidHandles",1,"solid","definition","inputDefinitions",0,"type"]

Locations: [{"line":238,"column":5}]
This occurred when I created a subgraph with the following type annotations. Removing the annotations fixed the issue.
Copy code
@graph
def fx(
    chunk: list,
):
...
Copy code
An error occurred while resolving field InputDefinition.type
Traceback (most recent call last):
  File "/Users/chrisevans/Repositories/data-platform/dags/bi/.venv/lib/python3.9/site-packages/graphql/execution/executor.py", line 452, in resolve_or_error
    return executor.execute(resolve_fn, source, info, **args)
  File "/Users/chrisevans/Repositories/data-platform/dags/bi/.venv/lib/python3.9/site-packages/graphql/execution/executors/sync.py", line 16, in execute
    return fn(*args, **kwargs)
  File "/Users/chrisevans/Repositories/data-platform/dags/bi/.venv/lib/python3.9/site-packages/dagster_graphql/schema/solids.py", line 50, in resolve_type
    return to_dagster_type(
  File "/Users/chrisevans/Repositories/data-platform/dags/bi/.venv/lib/python3.9/site-packages/dagster_graphql/schema/dagster_types.py", line 28, in to_dagster_type
    dagster_type_meta = pipeline_snapshot.dagster_type_namespace_snapshot.get_dagster_type_snap(
  File "/Users/chrisevans/Repositories/data-platform/dags/bi/.venv/lib/python3.9/site-packages/dagster/core/snap/dagster_types.py", line 55, in get_dagster_type_snap
    return self.all_dagster_type_snaps_by_key[key]
KeyError: 'List.Any'
a

alex

03/28/2022, 2:54 PM
@Dagster Bot issue @graph type annotations snapshotting issue
d

Dagster Bot

03/28/2022, 2:54 PM