> Agent-readable docs index: /llms.txt. Download /docs.zip to grep all markdown files locally.

---
title: "shopifyApp"
description: "Returns information about the Rye's Shopify App."
---

***

### Returns

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

***

### Example

<Tabs items={["Request", "Response"]}>
  <Tab title="Request">
    ```graphql
    query GetShopifyAppInfo {
      shopifyApp {
        installationLink(storeCanonicalDomain: "dear-media-shop.myshopify.com") {
          url
        }
      }
    }
    ```
  </Tab>

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

***

### 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).


---

*Powered by [holocron.so](https://holocron.so)*
