@snowtop/ent 0.1.0-alpha101 → 0.1.0-alpha102

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.
@@ -49,6 +49,7 @@ export interface CustomField extends CustomFieldImpl {
49
49
  results: Field[];
50
50
  extraImports?: any[];
51
51
  functionContents?: string;
52
+ edgeName?: string;
52
53
  }
53
54
  export interface CustomMutation extends CustomField {
54
55
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snowtop/ent",
3
- "version": "0.1.0-alpha101",
3
+ "version": "0.1.0-alpha102",
4
4
  "description": "snowtop ent framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -112,6 +112,7 @@ function processTopLevel(l, l2, gqlCapture) {
112
112
  nodeName: custom.class,
113
113
  functionName: custom.functionName || custom.name,
114
114
  gqlName: custom.graphQLName || custom.name,
115
+ edgeName: custom.edgeName,
115
116
  fieldType: custom.fieldType,
116
117
  args: transformArgs(custom, gqlCapture),
117
118
  results: transformResultType(custom),