I wrote a compute module which exposes some functions.
I want to be able to call those functions from another function. Usually functions that can be called from other functions are named “Query()” but what is the equivalent with Compute modules ?
How can I call a compute-module backed function from a normal typescript v1, v2 or python function ?
This is possible.
Once in Compute module, you can “include an API” to add an API to the function exposed by the compute module.
In compute module:
Adding an API name will make the function available from a standard repository.
In Code Repository:
Note: Make sure your functions are tied to the same Ontology !
If your compute module function is deployed to Ontology A and your code repository imports Object Types from Ontology B, it won’t be able to import your compute-module-backed function !