Skip to content

Instantly share code, notes, and snippets.

@govorov
Created October 14, 2017 01:00
Show Gist options
  • Save govorov/10d47de0bb2c00b5e1264191d038efb4 to your computer and use it in GitHub Desktop.
Save govorov/10d47de0bb2c00b5e1264191d038efb4 to your computer and use it in GitHub Desktop.
//
// graphql/types.ts
//
import { Card } from 'graphql/types/card';
export const types = [
Card,
];
//
// graphql/types/card.ts
//
export const Card = `
type Card {
id : String
title : String
description : String
done : Boolean
created_at : String
updated_at : String
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment