grapher/lib/query/nodes/fieldNode.js

10 lines
No EOL
217 B
JavaScript

export default class FieldNode {
constructor(name, body) {
this.name = name;
this.body = _.isObject(body) ? 1 : body;
}
applyFields(fields) {
fields[this.name] = this.body;
}
}