I am building Shopify Headless shop using Admin and Storefront GraphQL Api. Are all GraphQL API functionality available for non-Plus plans? I need to create order programatically from my custom Next.js storefront. For example, I need to use orderCreate and a custom checkout form. Is it possible? Are there any limitations on non-Plus plans?
Another question is languages. Do APIs on non-Plus plans support languages? How many? Is Shopify limited to 20 languages? I need my shop to be in 20+ languages.
What are general limitations for the non-Plus plans when using Graphql Admin API and Storefront API?
There are some queries/ mutations on the admin API which are only possible to complete on Plus stores, eg some queries related to B2B like companiesCount. These will always be indicated on our dev docs, eg:
The orderCreate mutation can be used on any store. For the custom checkout form however, the store may need to be on Plus if you’re aiming to build a custom app that uses a checkout UI extension.
I am just building a custom checkout. No payment or delivery payment. My store has free products. And then I just create an order. It works from the dev mode.
And the GraphQL was not marked as Plus only.
It should work with non-plus plan, right?