Added a null guard for args field

This commit is contained in:
Andrew Bastin 2019-11-18 15:14:26 -05:00
parent 6c4fbb501c
commit edbb81d089

View file

@ -35,7 +35,7 @@ export default {
computed: {
fieldString() {
const args = this.gqlField.args.reduce((acc, arg, index) => {
const args = (this.gqlField.args || []).reduce((acc, arg, index) => {
return acc + `${arg.name}: ${arg.type.toString()}${(index !== this.gqlField.args.length - 1) ? ", " : ''}`;
}, '');
const argsString = (args.length > 0) ? `(${args})` : '';