evyos-frontend-development/oldgraphql/schema.ts

8 lines
114 B
TypeScript

import { gql } from "graphql-tag";
export const typeDefs = gql`
type Query {
hello: String!
}
`;