Add auto-complete to flow/global typedInput types

This commit is contained in:
Nick O'Leary
2023-12-11 17:55:02 +00:00
parent 918943816f
commit b9c1dedab3
4 changed files with 169 additions and 39 deletions

View File

@@ -33,6 +33,9 @@ module.exports = {
store: req.query['store'],
req: apiUtils.getRequestLogObject(req)
}
if (req.query['keysOnly'] !== undefined) {
opts.keysOnly = true
}
runtimeAPI.context.getValue(opts).then(function(result) {
res.json(result);
}).catch(function(err) {