mirror of
https://github.com/vale981/grapher
synced 2025-03-06 18:11:39 -05:00
14 lines
No EOL
255 B
JavaScript
14 lines
No EOL
255 B
JavaScript
export default class FieldNode {
|
|
constructor(name, body) {
|
|
this.name = name;
|
|
this.body = body;
|
|
}
|
|
|
|
isGlobal() {
|
|
return this.name === '$all';
|
|
}
|
|
|
|
applyFields(fields) {
|
|
fields[this.name] = this.body;
|
|
}
|
|
} |