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