File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed
packages/graphql/src/translate/queryAST/factory/Operations Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -206,7 +206,6 @@ export class ConnectFactory {
206
206
} ) ;
207
207
208
208
this . addPopulatedByFieldToConnect ( {
209
- // entity: target,
210
209
connect,
211
210
input,
212
211
callbackBucket,
@@ -215,13 +214,11 @@ export class ConnectFactory {
215
214
}
216
215
217
216
private addPopulatedByFieldToConnect ( {
218
- // entity,
219
217
connect,
220
218
input,
221
219
callbackBucket,
222
220
relationship,
223
221
} : {
224
- // entity: ConcreteEntityAdapter;
225
222
connect : ConnectOperation ;
226
223
input : Record < string , any > ;
227
224
callbackBucket : CallbackBucket ;
@@ -231,7 +228,7 @@ export class ConnectFactory {
231
228
relationship ?. getPopulatedByFields ( "CREATE" ) . forEach ( ( attribute ) => {
232
229
const attachedTo = "relationship" ;
233
230
// the param value it's irrelevant as it will be overwritten by the callback function
234
- const relCallbackParam = new Cypher . Param ( "foo " ) ;
231
+ const relCallbackParam = new Cypher . Param ( "" ) ;
235
232
const relField = new ParamInputField ( {
236
233
attribute,
237
234
attachedTo,
Original file line number Diff line number Diff line change @@ -498,7 +498,7 @@ export class CreateFactory {
498
498
relationship ?. getPopulatedByFields ( "CREATE" ) . forEach ( ( attribute ) => {
499
499
const attachedTo = "relationship" ;
500
500
// the param value it's irrelevant as it will be overwritten by the callback function
501
- const relCallbackParam = new Cypher . Param ( "foo " ) ;
501
+ const relCallbackParam = new Cypher . Param ( "" ) ;
502
502
const relField = new ParamInputField ( {
503
503
attribute,
504
504
attachedTo,
You can’t perform that action at this time.
0 commit comments