UNPKG

graphqly

Version:
13 lines (10 loc) 212 B
class Definition { constructor({ head = "", body = "" } = {}) { this.head = head; this.body = body; } toString() { return `${this.head} {\n${this.body}\n}`; } } module.exports = Definition;