I am used to versioning my GraphQL by setting what they call the Context of a session. That being said, it is very easy to make an API call to the GraphQL with just the store name and the access token.
session = ShopifyAPI::Auth::Session.new(
shop: shop_name,
access_token: access_token
)
This session returns data from the store on a query. What is the API version used when you do not provide one? Is it just automatic that Shopify uses the latest stable API version and thus we can rest assured the calls we make use that when we do not provide one?
I see from the API library code that it probably comes to life with the latest stable version. Just looking for a confirmation of that.
@api_version = T.let(LATEST_SUPPORTED_ADMIN_VERSION, String)