Skip to content

Instantly share code, notes, and snippets.

@geoffjay
Created May 10, 2018 21:09
Show Gist options
  • Save geoffjay/2c9c85282aa7374ed7431f6ae34041dc to your computer and use it in GitHub Desktop.
Save geoffjay/2c9c85282aa7374ed7431f6ae34041dc to your computer and use it in GitHub Desktop.
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