我试图在graphql中创建一个突变,我想将对象的排列作为参数传递给我,并且在与apollo-client交互时出现问题。错误如下:错误!:错误:网络错误:响应不成功:收到状态码400
下面我显示了方案和突变:
type Venta {
_id: String!
_idCliente: String
clienteFinal: String
total: Int!
pago: Int!
vuelto: Int!
numeroFactura: Int!
listadoProductos: [ProductoVendido]
}
type ProductoVendido{
nombre: String
precio: Int
cantidad: Int
}
type Mutation {
createventa(listadoProductos: [ProductoVendido!]!): Venta!
}
我的期望是能够传递一系列对象,在这种情况下,这些对象将是来自react客户的购物车的产品。但是我的React应用程序因以下错误而中断:错误!:错误:网络错误:响应不成功:收到状态码400