Thank you for maintaining this great library. # Question: Impact of Shopify REST API Deprecation ## Context According to [Shopify's announcement](https://shopify.dev/docs/apps/build/graphql/migrate/new-product-model), the REST Admin API became legacy as of October 1, 2024. - Public apps must migrate by February 2025 - Custom apps must migrate by April 2025 ## Current Understanding This library appears to primarily use REST API for its core functionality. For example: ```python shop = shopify.Shop.current() # Uses REST API product = shopify.Product.find(179761209) # Uses REST API ``` ## Question Is my understanding correct that this library will need to migrate from REST API to GraphQL API due to the REST API deprecation?