memgraph/tests/e2e/graphql/temporary_procedures/mgps.py

9 lines
180 B
Python
Raw Normal View History

import typing
import mgp
@mgp.read_proc
def components(context: mgp.ProcCtx) -> mgp.Record(versions=list, edition=str):
return mgp.Record(versions=["4.3"], edition="4.3.2")