UNPKG

global-express

Version:

A Command line interface for instantly building an express

19 lines (15 loc) 285 B
const { gql } = require('apollo-server-express'); module.exports = gql` type Query { examples(page: Int, limit: Int): Examples } type Examples { products: [Products!] } type Products { id: ID! title: String description: String npmjs: String } `;