Replies: 1 comment
-
@ije The API for such GraphQL API already exists in Node.js however it is tightly bound to the SSG/SSR frameworks like Gridsome or Gatsby. If we can port such API to Deno, we can make it available also for Next.js, Vite etc. in addition to Aleph. Also it can be useful to provide many features that users want: |
Beta Was this translation helpful? Give feedback.
-
When it comes to developing static sites, Gatsby – with its powerful data querying system based on GraphQL – in my opinion still has a great advantage over Next.js. In SSG projects the data is usually defined in the file system of the repository. But this does not always mean that the structure of this data is simple. Often the data consists of complex relationships and dependencies which have to queryable by the application. Gatsby's GraphQL API makes working with these requirements very convenient. That can not be said about Next.js, unfortunately.
Are there any plans to support something like Gatsby's data querying system for static site generation?
Beta Was this translation helpful? Give feedback.
All reactions