import { gql } from 'graphql-tag'; export const typeDefs = gql` type User { _id: ID! name: String! } type Query { users: [User!]! } `;