@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snowtop/ent",
3
- "version": "0.1.0-alpha139",
3
+ "version": "0.1.0-alpha140",
4
4
  "description": "snowtop ent framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -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;