> ## Documentation Index
> Fetch the complete documentation index at: https://docs-test.rye.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# shopifyApp

> Returns information about the Rye's Shopify App.

***

### Returns

<ParamField path="ShopifyApp.*" type={<><a href="/api-reference/shopifyapp-object">ShopifyApp!</a></>} required>
  Any requested field from the [`ShopifyApp`](/api-reference/shopifyapp-object) object.
</ParamField>

***

### Example

<CodeGroup>
  ```graphql Request theme={null}
  query GetShopifyAppInfo {
    shopifyApp {
      installationLink(storeCanonicalDomain: "dear-media-shop.myshopify.com") {
        url
      }
    }
  }
  ```

  ```json Response theme={null}
  {
    "data": {
      "shopifyApp": {
        "installationLink": {
          "url": "https://dear-media-shop.myshopify.com/admin/***"
        }
      }
    }
  }
  ```
</CodeGroup>

***

### Notes

* The [`installationLink`](/api-reference/shopifyappinstallationlink) property can take either one of a store's canonical or storefront domains. Read more about Shopify domains [here](/sync-api/shopify-merchant-onboarding/shopify-store-domains).
