Skip to content

Instantly share code, notes, and snippets.

@HERRKIN
Created December 14, 2016 19:50
Show Gist options
  • Save HERRKIN/06e73a8394df22603b49e80635f3c462 to your computer and use it in GitHub Desktop.
Save HERRKIN/06e73a8394df22603b49e80635f3c462 to your computer and use it in GitHub Desktop.
index of schema
import User from './User.graphql'
import Query from './Query.graphql'
import {SchemaTypes as Auth} from 'meteor/nicolaslopezj:apollo-accounts'
import Mutation from './Mutation'
export default [
Auth({
CreateUserProfileInput: `
name: String
`
}),
User,
Query,
Mutation
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment