MCPcopy Index your code
hub / github.com/loopbackio/loopback-next / values

Method values

packages/context/src/inject-config.ts:234–239  ·  view source on GitHub ↗

* Get values for the configuration with a property path * @param session - Resolution session

(session?: ResolutionSession)

Source from the content-addressed store, hash-verified

232 * @param session - Resolution session
233 */
234 async values(session?: ResolutionSession) {
235 const configValues = await super.values(session);
236 const propertyPath = this.propertyPath;
237 if (!propertyPath) return configValues;
238 return configValues.map(v => getDeepProperty(v, propertyPath));
239 }
240}

Callers 15

TestModelClass · 0.45
notifyGroupsMethod · 0.45
buildModelDefinitionFunction · 0.45
findMethod · 0.45
getControllersFunction · 0.45
mergeMethod · 0.45

Calls 1

getDeepPropertyFunction · 0.90

Tested by 2

getControllersFunction · 0.36
staticRoutesMethod · 0.36