UNPKG

@terabits/grapi

Version:

Grapi Schema Generator For GraphQL Server

11 lines (10 loc) 240 B
import { Model, RelationType } from '../dataModel'; export interface Relation { getType(): RelationType; } export interface WithForeignKey { getForeignKeyConfig(): Array<{ model: Model; foreignKey: string; }>; }