Skip to content

Instantly share code, notes, and snippets.

@LeeDDHH
Created January 2, 2023 03:54
Show Gist options
  • Save LeeDDHH/d18e30c84ab96dd4934d6dc7e494bb20 to your computer and use it in GitHub Desktop.
Save LeeDDHH/d18e30c84ab96dd4934d6dc7e494bb20 to your computer and use it in GitHub Desktop.
Next.jsでapolloクライアント/サーバーを使うときのメモ(graphql-apollo-next-js-api-route.md)

既存の実装

問題点

  • apolloのクライアント/サーバライブラリとgraphqlのバージョンアップにより、 apollo-server-micro が非推奨となった
  • @apollo/server からサーバーを起動をしようとすると TypeError: resolver is not a function というエラーが起きてサーバーが起動しない

要件

  • Next.jsのAPI Routeに api/graphql という形でapolloサーバを立てたい
  • できるだけ既存のコードに変更は加えたくない

解決策

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment