(collection?: string)
| 360 | */ |
| 361 | interface RelationsService<T = Relation> { |
| 362 | foreignKeys(collection?: string): Promise<ForeignKey[]>; |
| 363 | readAll(collection?: string, opts?: QueryOptions, bypassCache?: boolean): Promise<T[]>; |
| 364 | /** |
| 365 | * Create a new relationship / foreign key constraint |
no outgoing calls
no test coverage detected