What is the difference between graphql-js buildSchema and the apollo-server gql? They appear to do a very similar job.
What is the difference between gql and buildSchema?
838 Views Asked by spinkus At
1
There are 1 best solutions below
Related Questions in GRAPHQL
- Expo Go crashing with on error message using Amplify Graphql to get an item
- Error: Response not successful: Received status code 405
- uninitialized constant GraphqlDevise::SchemaPlugin from graphql_devise
- Endpoint graphiql not working in Spring Boot application
- Relationships query in Tableau Metadata API by using GraphQL
- Dealing with Null Values in GraphQL API Response
- GraphQL filter query in react app with https://countries.trevorblades.com/ api
- Issue querying related data in Apollo Server 4 with Prisma Schema
- Error creating bean with name 'routerFunctionMapping' defined in class path resource
- Using Apollo client wrapper in Next.js 14 App router
- 400 Bad Request From React Axios Graphql SageX3
- graphql-java extension type redefine error from version 15
- How do I use and access the operation name in a graphQL query using spring-boot-starter-graphql and GraphQlTester?
- Upload file in GraphQL and apollo-server
- GraphQL and springboot resolver mapping problem
Related Questions in APOLLO-SERVER
- Error: Response not successful: Received status code 405
- Issue querying related data in Apollo Server 4 with Prisma Schema
- Using Apollo client wrapper in Next.js 14 App router
- Upload file in GraphQL and apollo-server
- Unable to run apollo server from React project
- Running apollo Server for Next.js app giving error
- GraphQL query giving error, but it still updates my database
- Apollo call API which provides all of a type, reducing duplicate calls when resolving individuals
- How to redirect to Apollo GraphQL Sandbox from NestJS app in local?
- Keep running other functions after return in GraphQL resolvers
- Can anybody provide a practical example of fastify4 + @apollo/server v4 + @fastify/websocket and Redis for gql subscriptions
- Mixing Apollo v3 and v4 GraphQL in a federated graph
- Next auth not working properly using Apollo graphql
- `context` function not executing NextJs / Apollo / GraphQL
- Why server no restarting after error in validation
Related Questions in GRAPHQL-JS
- how to use graphql in nestjs micro-service?
- global is not defined error when trying to import aws-amplify/storage
- Query Uniswap using GraphQL for ETH price
- Design Pattern for node.js application and GraphQL API
- How can I integrate a GraphQLInputObject into a schema loaded dynamically using JavaScript?
- GQL: Multiple Query Execution
- Using an unspread fragment in GraphQL
- @graphql-codegen settings for generating objects with type fields
- Contentful graphQL: filtering content by publishDate
- GraphQL types, generics and NestJS Type<>: not assignable to Type<>
- What is input/output from fetched Graphql Schema and how to deal with it type-wise?
- How to define JSON custom scalar type in graphql which can be nullable?
- How to make the ApolloClient useQuery method to await
- GraphQL only select items of certain type from array
- GraphQL usage with REST Endpoints in .NET Core 6.0
Related Questions in GRAPHQL-TAG
- @include or @skip directives applied in post-resolver, not pre-resolver. Eventually hitting the backend instead of omitting a property on a client
- Invariant Violation: fetch is not found globally and no fetcher passed, to fix pass a fetch for your environment
- How to go about using javascript variables inside a graphql-tag mutation
- Apollo Client, gql from graphql-tag or @apollo/client
- How to use constant data instead of query field name?
- graphql-tag: how to get the actual string for the body request?
- GraphQL Tag dynamic table name in query (apollo)
- String interpolation in gql tag
- What the /src means when installing npm package?
- Apollo codegen duplicating nested fragment imports
- Angular 7 ERROR in node_modules/graphql-tag/lib/index.d.ts(2,57): error TS1005: ',' expected
- react native graphql-tag TypeError: Object is not a function (near '...(0, _graphqlTag.default)...')
- Handle progressive disclosure on frontend with Apollo Client
- What is the difference between gql and buildSchema?
- How can I make a custom query directive in Apollo
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Firstly note, apollo-server's
gqlis actually a re-export from graphql-tag.graphql-tagis a ~150 line package who's default and pretty much only useful export isgql.Quick bit of background: the
graphql-jspackage provides an official reference implementation of GraphQL in Javascript. It provides two important things basically:graphqlfunction, which will process any GraphQL query against aGraphQLSchemaobject (the GraphQLSchema object is how graphql-js represents your parsed schema).GraphQLSchemaobjects used by thegraphqlfunction from strings.Now, this is the part that ultimately confused me: in
graphql-js, taking a string and turning it into aGraphQLSchemaobject is a two step process:parsefunction).buildASTSchemafunction).It is like this is because the AST (Abstract Syntax Tree) is useful to a bunch of other tools which aren't even necessarily aware of GraphQL (for example see https://astexplorer.net/), where as the GraphQLSchema is only meaningful to graphql-js and related softwares.
graphql-js exposes the functions for doing both steps and these are reused by downstream implementors (like Apollo).
buildSchemais just a convenience wrapper to combine these two steps. It's literally this:The output of
gqlon the other hand is just the AST part, which is the same as the output from the graphql-jsparsefunction.gqldoesn't return aGraphQLSchemadirectly for the reason stated above: the AST is useful (notegqlis also doing some basic stuff like stateful caching and will merge an array of schema string into a single AST result ...). Eventually the AST will have to be turned into a proper schema though, and apollo-server does this when the server is instantiated (presumably).To show the relation, we can take the output of
gql(same asparse) run it throughbuildASTSchema(likebuildSchemadoes) then pass it tographqland it works the same:Gives: