Function
getParseGraphQLController
(
options: ParseServerOptions,
controllerDeps
)
Source from the content-addressed store, hash-verified
| 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; |
Tested by
no test coverage detected