RefreshContractInput
InputAutogenerated input type of RefreshContract
mutation { organization(id: $organizationId) { project(id: $projectId) { refreshContract } } }
Example
mutation RefreshContract(
$organizationId: ID!
$projectId: ID!
$input: RefreshContractInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
refreshContract(input: $input) {
errors
}
}
}
}