Delete Opportunity
May 28th, 2024
- mutation to delete an opportunity.
example:
mutation DeleteOpportunity {
  deleteOpportunity(id: "38")
}
- a new field added in opportunity permission for can_delete
example:
query Opportunity {
	opportunity(id: "35") {
		id
		permissions {
                  can_delete
                }
        }
}
X
Crafted by