| Contact | Donate | Imprint |
| Entity | Alias | Module | Global Schema |
| (1) App | App | AppModule | Shopify |
| (2) AppCategory | AppCategory | AppModule | Shopify |
| (3) AppCategoryAssignment | AppCategoryAssignment | AppModule | Shopify |
| (4) Company | Company | CompanyModule | Shopify |
| (5) Merchant | Merchant | AppModule | Shopify |
| (6) MerchantAppInstallation | MerchantAppInstallation | AppModule | Shopify |
| App | AppModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) AppStoreListingUrl | STRING | App | ||
| (2) Description | STRING | App | ||
| (3) DeveloperCompany | LONG | App | Company | CompanyModule |
| (4) InitialReleaseDate | DATE | App | ||
| (5) IsShopifyOwned | BOOL | App | ||
| (6) Name | STRING | App |
Example:
final App app = (App) invokeModule(APP_MODULE + "/app/" + id, App.class);| AppCategory | AppModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) Description | STRING | AppCategory | ||
| (2) Name | STRING | AppCategory |
Example:
final AppCategory appcategory = (AppCategory) invokeModule(APP_MODULE + "/appcategory/" + id, AppCategory.class);| AppCategoryAssignment | AppModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) App | LONG | AppCategoryAssignment | App | AppModule |
| (2) AppCategory | LONG | AppCategoryAssignment | AppCategory | AppModule |
Example:
final AppCategoryAssignment appcategoryassignment = (AppCategoryAssignment) invokeModule(APP_MODULE + "/appcategoryassignment/" + id, AppCategoryAssignment.class);| Merchant | AppModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) Company | LONG | Merchant | Company | CompanyModule |
| (2) Country | STRING | Merchant | ||
| (3) Industry | STRING | Merchant | ||
| (4) IsActive | BOOL | Merchant | ||
| (5) IsShopifyPlus | BOOL | Merchant | ||
| (6) MerchantSize | STRING | Merchant | ||
| (7) OnboardingDate | DATE | Merchant |
Example:
final Merchant merchant = (Merchant) invokeModule(APP_MODULE + "/merchant/" + id, Merchant.class);| MerchantAppInstallation | AppModule | Shopify |
| Property | Type | Entity | Reference | Module |
| (1) App | LONG | MerchantAppInstallation | App | AppModule |
| (2) InstallDate | DATE | MerchantAppInstallation | ||
| (3) Merchant | LONG | MerchantAppInstallation | Merchant | AppModule |
| (4) MonthlyRevenueShareUsd | STRING | MerchantAppInstallation | ||
| (5) UninstallDate | DATE | MerchantAppInstallation |
Example:
final MerchantAppInstallation merchantappinstallation = (MerchantAppInstallation) invokeModule(APP_MODULE + "/merchantappinstallation/" + id, MerchantAppInstallation.class);| Contact | Donate | Imprint |