GraphQL reference

UpdateRfiResponsePayload

Object

Autogenerated return type of UpdateRfiResponse.

mutation { organization(id: $organizationId) { project(id: $projectId) { updateRfiResponse } } }

Example

mutation UpdateRfiResponse(
  $organizationId: ID!
  $projectId: ID!
  $input: UpdateRfiResponseInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      updateRfiResponse(input: $input) {
        rfiResponse
        errors
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!
rfiResponseRfiResponse