OBJECT

ProposedIntent

Represents many-to-many relationships between Proposals and Intents, supporting including intents in multiple proposals, as well as a proposal including multiple intents.

link GraphQL Schema definition

  • type ProposedIntent {
  • id: ID!
  • # The published proposal which this intent is part of.
  • publishedIn: Proposal!
  • # The intent which is part of this published proposal.
  • publishes: Intent!
  • # This is a reciprocal intent of this proposal, not primary. Not meant to be used
  • # for intent matching.
  • reciprocal: Boolean
  • }