evyos-frontend-development/graphql/schema.ts

13 lines
177 B
TypeScript

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