feat: Implement getConnectedApps graphQL query
This commit is contained in:
@@ -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
|
||||
}
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user