Skip to main content

Agreement

Agreement(id, publication_date, is_published, created_at, updated_at, content, content_html, tenant, seo_title, seo_description, slug, title, default_commission, is_active)

type Agreement implements Node {
id: ID!
tenant: Tenant!
slug: String!
title: String!
defaultCommission: Decimal!
isActive: Boolean
isPublished: Boolean!
publicationDate: Date
content: String!
contentHtml: String!
contentJson: String
seoTitle: String
seoDescription: String
createdAt: DateTime!
updatedAt: DateTime!
fees: [AgreementFees!]!
granularCommissions: [AgreementCommission!]!
sellerAgreements(
offset: Int
before: String
after: String
first: Int
last: Int
): AgreementSellersCountableConnection!
events(
before: String
after: String
first: Int
last: Int
): AgreementEventCountableConnection!
}
Show more ↓

Fields

Agreement.id ● ID! non-null scalar

The Globally Unique ID of this object

Agreement.tenant ● Tenant! non-null object

Agreement.slug ● String! non-null scalar

Agreement.title ● String! non-null scalar

Agreement.defaultCommission ● Decimal! non-null scalar

Agreement.isActive ● Boolean scalar

Agreement.isPublished ● Boolean! non-null scalar

Agreement.publicationDate ● Date scalar

Agreement.content ● String! non-null scalar

Agreement.contentHtml ● String! non-null scalar

Agreement.contentJson ● String scalar

Agreement.seoTitle ● String scalar

Agreement.seoDescription ● String scalar

Agreement.createdAt ● DateTime! non-null scalar

Agreement.updatedAt ● DateTime! non-null scalar

Agreement.fees ● [AgreementFees!]! non-null object

Agreement.granularCommissions ● [AgreementCommission!]! non-null object

Agreement.sellerAgreements ● AgreementSellersCountableConnection! non-null object

Agreement.sellerAgreements.offset ● Int scalar
Agreement.sellerAgreements.before ● String scalar

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

Agreement.sellerAgreements.after ● String scalar

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

Agreement.sellerAgreements.first ● Int scalar

Returns the first n items from the list.

Agreement.sellerAgreements.last ● Int scalar

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

Agreement.events ● AgreementEventCountableConnection! non-null object

Agreement.events.before ● String scalar

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

Agreement.events.after ● String scalar

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

Agreement.events.first ● Int scalar

Returns the first n items from the list.

Agreement.events.last ● Int scalar

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

Interfaces

Node interface

An object with a Globally Unique ID

Returned By

agreement query

Member Of

AgreementCommission object ● AgreementCountableEdge object ● AgreementCreate object ● AgreementDelete object ● AgreementFees object ● AgreementSellers object ● AgreementUpdate object ● Seller object

Was this page helpful?