UNPKG

@grapi/server

Version:

Grapi Schema Generator For GraphQL Server

18 lines (17 loc) 353 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class ObjectType { name; fields; constructor({ name, fields, }) { this.name = name; this.fields = fields; } getTypename() { return this.name; } getFields() { return this.fields; } } exports.default = ObjectType;