Mutations
reviewTriggerEventGenerate
Mutate the database in such a way that it satisfies a review trigger and adds the given company to review. This is only available in sandbox.
mutation ReviewTriggerEventGenerate($where: CompanyWhereInput!) {
reviewTriggerEventGenerate(where: $where) {
success
company {
id
name
}
}
}input CompanyWhereInput {
id: CompanyId!
}Arguments
where CompanyWhereInput! non-null input
Type
CompanyPayload object
CompanyPayload
The payload for a company mutation.
Response Fields
success Boolean! non-null scalar
company Company object
Company
A company resource.