GraphQL reference

RespondToRfiPayload

Object

Autogenerated return type of RespondToRfi.

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

Example

mutation RespondToRfi(
  $organizationId: ID!
  $projectId: ID!
  $input: RespondToRfiInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      respondToRfi(input: $input) {
        rfiResponse
        errors
      }
    }
  }
}

Fields

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