Skip to main content

Partner

Represents a Partner, the parent to an App, and the parent most component for Development

type Partner {
app(
appId: ID!
): App
apps(
after: String
before: String
first: Int
last: Int
): AppConnection!
createdAt: Date!
description: String
name: String!
notificationUserNames: PartnerNotificationUserNames
ownerUser: PublicIdentity
ownerUserName: String!
partnerId: ID!
partnerIdentities(
after: String
before: String
first: Int
last: Int
): PartnerIdentityConnection!
partnerIdentity(
identityId: ID!
): PartnerIdentity
updatedAt: Date!
updatedBy: ID!
}

Fields

Partner.app ● App object

Get an App by ID

Partner.app.appId ● ID! non-null scalar

Partner.apps ● AppConnection! non-null object

Get a list of Apps for a Partner

Partner.apps.after ● String scalar

Returns the elements in the list that come after the specified cursor.

Partner.apps.before ● String scalar

Returns the elements in the list that come before the specified cursor.

Partner.apps.first ● Int scalar

Returns the first n elements from the list.

Partner.apps.last ● Int scalar

Returns the last n elements from the list.

Partner.createdAt ● Date! non-null scalar

Partner.description ● String scalar

Description of the partner Limited to 8000 characters

Partner.name ● String! non-null scalar

The name of the partner Limited to 128 characters

Partner.notificationUserNames ● PartnerNotificationUserNames object

Represents the users to be notified for certain events

Partner.ownerUser ● PublicIdentity object

Get the PublicIdentity of the owner for a given Partner

Partner.ownerUserName ● String! non-null scalar

Partner.partnerId ● ID! non-null scalar

Partner.partnerIdentities ● PartnerIdentityConnection! non-null object

Return the identities' permissions associated with this partner

Partner.partnerIdentities.after ● String scalar

Returns the elements in the list that come after the specified cursor.

Partner.partnerIdentities.before ● String scalar

Returns the elements in the list that come before the specified cursor.

Partner.partnerIdentities.first ● Int scalar

Returns the first n elements from the list.

Partner.partnerIdentities.last ● Int scalar

Returns the last n elements from the list.

Partner.partnerIdentity ● PartnerIdentity object

Return a single identity's permissions associated with this partner

Partner.partnerIdentity.identityId ● ID! non-null scalar

Partner.updatedAt ● Date! non-null scalar

Partner.updatedBy ● ID! non-null scalar

Returned by

createPartner mutation ● partner query ● updatePartner mutation

Member of

App object ● PartnerConnection object ● PartnerEdge object