2021-03-25 19:29:24 +00:00
|
|
|
import { gql } from 'apollo-server-micro'
|
|
|
|
|
|
|
|
import user from './user'
|
|
|
|
import message from './message'
|
2021-04-12 18:05:09 +00:00
|
|
|
import item from './item'
|
2021-04-30 21:42:51 +00:00
|
|
|
import wallet from './wallet'
|
2021-03-25 19:29:24 +00:00
|
|
|
|
|
|
|
const link = gql`
|
|
|
|
type Query {
|
|
|
|
_: Boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
type Mutation {
|
|
|
|
_: Boolean
|
|
|
|
}
|
|
|
|
|
|
|
|
type Subscription {
|
|
|
|
_: Boolean
|
|
|
|
}
|
|
|
|
`
|
|
|
|
|
2021-04-30 21:42:51 +00:00
|
|
|
export default [link, user, item, message, wallet]
|