( options: ParseServerOptions, controllerDeps )
| 117 | } |
| 118 | |
| 119 | export function getParseGraphQLController( |
| 120 | options: ParseServerOptions, |
| 121 | controllerDeps |
| 122 | ): ParseGraphQLController { |
| 123 | return new ParseGraphQLController({ |
| 124 | mountGraphQL: options.mountGraphQL, |
| 125 | ...controllerDeps, |
| 126 | }); |
| 127 | } |
| 128 | |
| 129 | export function getAnalyticsController(options: ParseServerOptions): AnalyticsController { |
| 130 | const { analyticsAdapter } = options; |
no outgoing calls
no test coverage detected
searching dependent graphs…