"""Create release correction detail mutation.""" query = ''' mutation( $productId: Int!, $releaseCorrectionId: Int!, $corrections:[CorrectionDetailInput!]! ) { createProductCorrectionDetail(input: { productId: $productId releaseCorrectionId: $releaseCorrectionId corrections: $corrections }) { correctionDetailId keyId tableName fieldName } } '''