grapher/lib/query/nodes/fieldNode.js
2016-09-14 16:04:08 +03:00

10 lines
No EOL
194 B
JavaScript

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