So, I’ve finally upgraded the Shopify API to v7 (from v5). Now we have a custom app created on the Shopify Admin (with API Key, Secret, and Access Token). Originally, we could just use Shopify.Context.initialize and then run graphql queries using await Shopify.Clients.Graphql(SHOP_NAME, SHOP_ACCESS_TOKEN).
Now, we’re expected to provide a session object, which I don’t know where to get from. The Access Token indicates that it’s from the private app days, and that it’s always valid. How do I perform a graphql request or how do I get a session object on my backend from shopify?