Page Contents

Home > @loopback/repository > HasOneDefinition

HasOneDefinition interface

Signature:

export interface HasOneDefinition extends RelationDefinitionBase 

Extends: RelationDefinitionBase

Properties

Property Type Description
keyFrom? string (Optional)
keyTo? string (Optional) keyTo: The foreign key used by the target model for this relation. keyFrom: The source key used by the source model for this relation.E.g. when a Customer has one Address instance, then keyTo is “customerId”. Note that “customerId” is the default FK assumed by the framework, users can provide a custom FK name by setting “keyTo”. And Customer.id is keyFrom. keyFrom defaults to the id property of a model. Users can provide a custom source key name by setting “keyTo”.
targetsMany false  
type RelationType.hasOne