@faststore/api
The only API you need for building your next ecommerce.
This package defines a front-end first, GraphQL API inspired by clean architecture and schema.org.
GraphQL types defined in this repo extends and simplifies schema.org. This makes it easier to make your frontend search friendly.
Also, by using the clean architecture, all types defined on this schema are not platform specific, but created to resolve an specific business case on your frontend, like rendering listprices, sellers etc.
Alongside the GraphQL type definitions, we provide standard implementations for common ecommerce platforms. Currently we support:
- VTEX
- Maybe add yours?
With the typedefs and resolvers, you can create an executable schema and deploy anywhere you want. For instance, one use case would be:
- Create an Apollo Server instane on Heroku
- Run the executable schema in a function on Next.JS
- Run the executable schema during a Gatsby build.
Install
yarn add @faststore/api
Usage
GraphQL is very versatile and can run in many places. To setup the schema in an apollo server, just:
import { getSchema } from '@faststore/api'
import { ApolloServer } from 'apollo-server'
const schema = await getSchema({ platform: 'vtex', account: 'my-account', environment: 'vtexcommercestable' })
const server = new ApolloServer({ schema });
server.listen().then(({ url }) => {
console.log(`🚀 Server ready at ${url}`);
});
Extending the schema
GraphQL is a very versatile language. By using the exported getSchema
function, you can not only extend the base schema but also redefine the whole resolvers implementation.
To extend the schema, one can:
import { getSchema } from '@faststore/api'
import { makeExecutableSchema, mergeSchemas } from '@graphql-tools/schema'
import { ApolloServer } from 'apollo-server'
const typeDefs = `
extend type Product {
customField: String!
}
`
const resolvers = {
Product: {
customField: async () => {
...
...
}
}
}
const customSchema = makeExecutableSchema({ resolvers, typeDefs })
const storeApiSchema = await getSchema({ platform: 'vtex', ...})
const finalSchema = mergeSchemas(schemas: [
storeApiSchema,
customSchema
])
const server = new ApolloServer({ schema });
server.listen().then(({ url }) => {
console.log(`🚀 Server ready at ${url}`);
});
Inline platform
If your ecommerce platform is not supported you have two options.
- Make a contribution
- Create inline resolvers for your platform
Inline resolves means you are going to write all resolvers for the api schema in your project or in an external library. This is recommended if you are supporting a niche platform and want to have full control over how each field is processed.
To create your own resolvers, you can:
import { getTypeDefs } from '@faststore/api'
import { ApolloServer } from 'apollo-server'
import { makeExecutableSchema } from '@graphql-tools/schema'
const typeDefs = getTypeDefs()
const resolvers = {
...
...
}
const schema = makeExecutableSchema({ resolvers, typeDefs })