Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Add an `onGraphRequest` method. (#1784, #1818)
4 changes: 0 additions & 4 deletions src/v2/providers/dataconnect/graphql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ export async function initGraphqlServer(opts: GraphqlServerOptions): Promise<exp
}

/**
* @hidden
* Handles HTTPS GraphQL requests.
* @param {GraphqlServerOptions} opts - Options for configuring the GraphQL server.
* @returns {HttpsFunction} A function you can export and deploy.
Expand Down Expand Up @@ -124,7 +123,6 @@ export function onGraphRequest(opts: GraphqlServerOptions): HttpsFunction {
}

/**
* @hidden
* Options for configuring the GraphQL server.
*/
export interface GraphqlServerOptions extends Omit<HttpsOptions, "cors"> {
Expand All @@ -150,7 +148,6 @@ export interface GraphqlServerOptions extends Omit<HttpsOptions, "cors"> {
}

/**
* @hidden
* Per-request context state shared by all resolvers in a particular query.
*/
export interface FirebaseContext {
Expand All @@ -161,7 +158,6 @@ export interface FirebaseContext {
}

/**
* @hidden
* Resolver functions that populate data for individual GraphQL schema fields.
*/
export interface GraphqlResolvers {
Expand Down
Loading