2022-02-24 13:05:57 -06:00

27 lines
505 B
JavaScript

import { gql } from 'apollo-server-micro'
import user from './user'
import message from './message'
import item from './item'
import wallet from './wallet'
import lnurl from './lnurl'
import notifications from './notifications'
import invite from './invite'
import sub from './sub'
const link = gql`
type Query {
_: Boolean
}
type Mutation {
_: Boolean
}
type Subscription {
_: Boolean
}
`
export default [link, user, item, message, wallet, lnurl, notifications, invite, sub]