The Booking API is built on top of the Shopify GraphQL API. We are reducing the number of calls to the Booking API by saving a lot of documents from MongoDB into Shopify metafields. This approach allows us to take advantage of Shopify as a hosting provider.
User documents are saved in Shopify user metafields. Products are stored in the corresponding product metafields. Locations will also be saved soon.
For each user, we create a new collection that contains all their services. We also create products that users can duplicate. These products come pre-set with metafields and are ready to be modified. Additionally, we have organized products into specific collections; for example, the "Hairstylist" collection includes services related to hairstyling.
TODO:
- We need to move the booking time to the browser, returning only the booked time range.
The guide is not complete, since there is some metafields that needs to be setup in each product.
Assign the correct value to all env values and rename to local.settings.json
You have to add carrier service to shopify, so it can calculate location distance.
POST https://{shop}.myshopify.com/admin/api/2022-10/carrier_services.json
{
"carrier_service": {
"name": "Beauty Shipping",
"callback_url": "https://{apiURL}/api/shipping/rates",
"service_discovery": true
}
}
Then you need to add the carrier in the "Shipping and delivery" inside shopify Settings https://admin.shopify.com/store/{shopName}/settings
You need to create webhooks callback in the notifications. https://admin.shopify.com/store/bysistersdk/settings/notifications (scroll bottom on notification page, click webhooks)
Order update: https://{apiUrl}/api/webhooks/order
Crder creation: https://{apiUrl}/api/webhooks/order
Product update: https://{apiUrl}/api/webhooks/product
These files are part of the OpenAPI definition but not yet bundled together. These individual files contain different parts of the API specification, such as paths, schemas, or security definitions. These components are organized in a modular way, making it easier to maintain and update the API documentation.
npm run bundle
- Running all specs (jest)
- Bundle openapi fragments and generating the api documentation page
- Deploy docs folder to pages
- Deploy Azure functions to production
In case you need to import openapi def in postman you can use this script to set token in your env after login.
Please create new environment or else below code will not work.
let responseJson = pm.response.json();
let token = responseJson.payload.token;
pm.environment.set("bearerToken", token);
We try to NOT export all internal files from index folder file because we would like to mock single methods in jest. It's eaiser when not using index file.
- Azure Functions
- Azure Durable
- Google Map
- Shopify Api
- Mongoose (MongoDB)
- Zod (validation)
- DateFns
- Openapi
- Orval