UNPKG

petpet

Version:
17 lines (13 loc) 199 B
const { buildSchema } = require('graphql') module.exports = buildSchema(` type Stats { happiness: Float } type Query { petpet: String stats: Stats } type Mutation { headpats: Boolean } `)