App
Represents an installed application.
type App implements Node, ObjectWithMetadata {
id: ID!
metadata: [MetadataItem!]!
privateMetadata: [MetadataItem!]!
name: String!
created: DateTime!
isActive: Boolean!
identifier: String
version: String
user: User
seller: Seller
tokens: [AppToken!]!
permissions: [Permission!]!
dashboardIntegrations: [AppDashboardIntegration!]!
storefrontIntegrations: [AppStorefrontIntegration!]!
webhooks: [Webhook!]!
accessToken: String
}
Fields
App.id ● ID! non-null scalar
The Globally Unique ID of this object
App.metadata ● [MetadataItem!]! non-null object
List of public metadata items. Can be accessed without permissions.
App.privateMetadata ● [MetadataItem!]! non-null object
List of private metadata items. Requires proper staff permissions to access.
App.name ● String! non-null scalar
App.created ● DateTime! non-null scalar
App.isActive ● Boolean! non-null scalar
App.identifier ● String scalar
App.version ● String scalar
App.user ● User object
The user who owns this app
App.seller ● Seller object
The seller this app belongs to (if seller-level)
App.tokens ● [AppToken!]! non-null object
Authentication tokens for this app
App.permissions ● [Permission!]! non-null object
Permissions granted to this app
App.dashboardIntegrations ● [AppDashboardIntegration!]! non-null object
Dashboard integrations for this app
App.storefrontIntegrations ● [AppStorefrontIntegration!]! non-null object
Storefront integrations for this app
App.webhooks ● [Webhook!]! non-null object
List of webhooks assigned to this app
App.accessToken ● String scalar
Access token for API authentication
Interfaces
Node interface
An object with a Globally Unique ID
ObjectWithMetadata interface
An object that supports metadata.
Returned By
app query
Member Of
AppActivate object ● AppCountableEdge object ● AppCreate object ● AppDashboardIntegration object ● AppDeactivate object ● AppDelete object ● AppStorefrontIntegration object ● AppUpdate object ● ExportEvent object ● ExportFile object ● ImportEvent object ● ImportFile object ● Webhook object