MCPcopy Create free account
hub / github.com/axe-api/axe-api / find

Method find

packages/axe-api/src/Services/ModelListService.ts:10–17  ·  view source on GitHub ↗
(name: string)

Source from the content-addressed store, hash-verified

8 }
9
10 find(name: string): IModelService | null {
11 const found = this.models.find((i) => i.name === name);
12 if (found) {
13 return found;
14 }
15
16 return null;
17 }
18
19 get(): IModelService[] {
20 return this.models;

Callers 15

getVersionByRequestFunction · 0.80
generateDocumentationFunction · 0.80
createNestedRoutesMethod · 0.80
createChildRoutesMethod · 0.80
checkPrimaryKeyValueTypeFunction · 0.80
getRelatedDataFunction · 0.80
validateForeignValuesFunction · 0.80
resolveRelationsByKeyMethod · 0.80
resolveMethod · 0.80
setModelHooksMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected