@snowtop/ent 0.1.0-alpha139 → 0.1.0-alpha140
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/schema/schema.d.ts +4 -0
package/package.json
CHANGED
package/schema/schema.d.ts
CHANGED
|
@@ -195,9 +195,13 @@ export interface InverseFieldEdge {
|
|
|
195
195
|
tableName?: string;
|
|
196
196
|
hideFromGraphQL?: boolean;
|
|
197
197
|
}
|
|
198
|
+
export interface IndexEdgeOptions {
|
|
199
|
+
name: string;
|
|
200
|
+
}
|
|
198
201
|
export interface FieldEdge {
|
|
199
202
|
schema: string;
|
|
200
203
|
inverseEdge?: string | InverseFieldEdge;
|
|
204
|
+
indexEdge?: IndexEdgeOptions;
|
|
201
205
|
enforceSchema?: boolean;
|
|
202
206
|
getLoaderInfoFromSchema?: getLoaderInfoFn;
|
|
203
207
|
disableBuilderType?: boolean;
|