Created
December 14, 2016 19:50
-
-
Save HERRKIN/06e73a8394df22603b49e80635f3c462 to your computer and use it in GitHub Desktop.
index of schema
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 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