* Returns related instance (specified by propertyKey) of source instance
(
propertyKey: K,
options?: AssociationGetOptions
)
| 83 | * Returns related instance (specified by propertyKey) of source instance |
| 84 | */ |
| 85 | $get<K extends keyof this>( |
| 86 | propertyKey: K, |
| 87 | options?: AssociationGetOptions |
| 88 | ): Promise<$GetType<this[K]>> { |
| 89 | return this['get' + capitalize(propertyKey as string)](options); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Counts related instances (specified by propertyKey) of source instance |
nothing calls this directly
no test coverage detected
searching dependent graphs…