Our app has write_products scope but when migrating to new Graphql is this scope enough for the app to create and manage products of the store or if any new scopes needed
Hi Samuel,
For creating and managing products, the write_products
access scope should be enough. For example all these mutations require just the write_products
access scope:
However - it does depend on exactly what your app is doing, there are some limitations, eg if you need to query or change measurements on a product you would access the InventoryItem object, which requires the read_inventory
access scope.