OBJECT

AgentRelationship

The role of an economic relationship that exists between 2 agents, such as member, trading partner.

link GraphQL Schema definition

  • type AgentRelationship {
  • id: ID!
  • # Grouping around something to create a boundary or context, used for documenting,
  • # accounting, planning.
  • inScopeOf: [AccountingScope!]
  • # A textual description or comment.
  • note: String
  • # The object of a relationship between 2 agents. For example, if Mary is a member
  • # of a group, then the group is the object.
  • object: Agent!
  • # A kind of relationship that exists between 2 agents.
  • relationship: AgentRelationshipRole!
  • # The subject of a relationship between 2 agents. For example, if Mary is a
  • # member of a group, then Mary is the subject.
  • subject: Agent!
  • }