Created
May 10, 2018 21:09
-
-
Save geoffjay/2c9c85282aa7374ed7431f6ae34041dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Obj from './object' | |
import Property from './property' | |
import Plugin from './plugin' | |
const Configuration = ` | |
type Configuration { | |
id: String!, | |
properties: [Property] | |
plugins: [Plugin] | |
objects: [Obj] | |
} | |
` | |
export default [Configuration, Obj, Property, Plugin] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment