rbac.graphql 637 B

1234567891011
  1. # The permission required to access a Shopify Admin API or Storefront API resource for a shop.
  2. # Merchants grant access scopes that are requested by applications.
  3. type AccessScope {
  4. # A description of the actions that the access scope allows an app to perform.
  5. description: String!
  6. # A readable string that represents the access scope. The string usually follows the format {action}_{resource}.
  7. # {action} is read or write, and {resource} is the resource that the action can be performed on.
  8. # {action} and {resource} are separated by an underscore. For example, read_orders or write_products.
  9. handle: String!
  10. }