jefer94/choco

View on GitHub
services/graphql-gateway/src/schema/index.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { gql } from 'apollo-server-express'

import auth from './auth'
import project from './project'

const link = gql`
  type Query {
    _: Boolean
  }
 
  type Mutation {
    _: Boolean
  }
 
  type Subscription {
    _: Boolean
  }
`

export default [link, auth, project]