OBJECT

OpptyProductRelationEntity

link GraphQL Schema definition

  • type OpptyProductRelationEntity {
  • # Arguments
  • # apiNames: Api names of custom fields to retrieve. All are
  • # returned if not set.
  • customFields(apiNames: [String!]): JSONString!
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • oppty: OpportunityEntity
  • opptyProductRelationType: OpptyProductRelationTypeEntity
  • pairedOpptyProductRelation: OpptyProductRelationEntity
  • # Relation to single entity instance. Target entity is re-used and not deleted
  • # on de-association.
  • #
  • # Examples:
  • #
  • # Opportunity.owner -> Client, the Client is reused for many opportunities.
  • #
  • # Account.picture -> CloudObject, the CloudObject can be reused on many accounts.
  • #
  • product: ProductEntity
  • quote: QuoteEntity
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • amount: Float
  • # Multi-line text input field.
  • comment: String
  • # Relation to single entity instance.
  • opptyId: ID
  • # Relation to single entity instance.
  • opptyProductRelationTypeId: ID
  • # Relation to single entity instance.
  • pairedOpptyProductRelationId: ID
  • price: Float
  • # Relation to single entity instance.
  • productId: ID!
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • quantity: Float
  • # Relation to single entity instance.
  • quoteId: ID
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • sectionId: ID
  • # Generic field wrapping sqlalchemy column, configurable by constructor.
  • #
  • # Good for one-of fields / generated fields.
  • #
  • sortOrder: Int
  • # Revision when entity was lastly changed.
  • revision: Int
  • revenueSchedule: OpptyProductRelationRevenueScheduleEntity
  • discountValue: Float
  • discountPercentage: Float
  • modifiedByUser: DateTime
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }