Skip to content

Commit

Permalink
Fix: missing array modifier for scalar fields
Browse files Browse the repository at this point in the history
  • Loading branch information
KrishnaPG authored Oct 23, 2023
1 parent 9ff9b0c commit 4890b86
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/concerto-core/lib/introspect/field.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ class Field extends Property {

fieldAst.name = this.ast.name;
this.scalarField = new Field(this.getParent(), fieldAst);
this.scalarField.array = this.isArray();
return this.scalarField;
}
}
Expand Down

0 comments on commit 4890b86

Please sign in to comment.