Axinom Mosaic Libraries
    Preparing search index...
    HookPluginFactory: (
        buildOptions: PostGraphileOptions<Request, Response> | undefined,
    ) => PostGraphilePlugin

    This is the function type that must be used when developing Hook Plugin factory functions.

    Type Declaration

      • (
            buildOptions: PostGraphileOptions<Request, Response> | undefined,
        ): PostGraphilePlugin
      • Parameters

        • buildOptions: PostGraphileOptions<Request, Response> | undefined

        Returns PostGraphilePlugin

       const subscriptionAuthorizationHookFactory = (
    buildOptions: PostGraphileOptions<Request, Response> | undefined,
    ): PostGraphilePlugin => {
    return {
    // returns a PostGraphilePlugin
    }
    }