@snowtop/ent 0.1.0-alpha129 → 0.1.0-alpha130

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-alpha129",
3
+ "version": "0.1.0-alpha130",
4
4
  "description": "snowtop ent framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -267,6 +267,7 @@ async function parseSchema(potentialSchemas, globalSchema) {
267
267
  actions: schema.actions?.map((action) => processAction(action)) || [],
268
268
  assocEdges: [],
269
269
  assocEdgeGroups: [],
270
+ customGraphQLInterfaces: schema.customGraphQLInterfaces,
270
271
  };
271
272
  // let's put patterns first just so we have id, created_at, updated_at first
272
273
  // ¯\_(ツ)_/¯
@@ -38,6 +38,7 @@ export default interface Schema {
38
38
  constraints?: Constraint[];
39
39
  indices?: Index[];
40
40
  hideFromGraphQL?: boolean;
41
+ customGraphQLInterfaces?: string[];
41
42
  }
42
43
  export interface AssocEdge {
43
44
  name: string;