feat: Implement getConnectedApps graphQL query

This commit is contained in:
Faruk AYDIN
2021-10-17 15:10:38 +02:00
committed by Ali BARIN
parent 8fa0178e08
commit 084a831e7a
4 changed files with 50 additions and 3 deletions

View File

@@ -1,12 +1,14 @@
import { GraphQLObjectType } from 'graphql';
import getApps from './queries/get-apps';
import getApp from './queries/get-app';
import getConnectedApps from './queries/get-connected-apps';
const rootQuery = new GraphQLObjectType({
name: 'Query',
fields: {
getApps: getApps,
getApp: getApp
getApps,
getApp,
getConnectedApps
}
});