210bea83d4
* Add callable mappings feature * Implement mgps.validate (void procedure) * Make '_' a valid variable name
9 lines
180 B
Python
9 lines
180 B
Python
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")
|