我想创建两个相关的实体。如何创建具有所需子实体的第一个实体。
我尝试了以下代码,但是graphql返回以下错误:
{
"errors": [
{
"message": "Variable \"$stock\" of type \"createProductInput!\" used in position expecting type \"String\".",
"extensions": {
"category": "graphql"
},
"locations": [
{
"line": 7,
"column": 3
},
{
"line": 15,
"column": 17
}
]
}
]
}
突变:
mutation createProduct ($input: createProductInput!) {
createProduct(input: $input) {
clientMutationId
product {
uuid
name
sku
}
}
}
变量:
{
"input": {
"name": "ProductAAA",
"sku": "product_aaa",
"stock": {
"quantity": 33,
"unit": "s"
}
}
}
奇怪的是,createProductInput表示stock是一个字符串而不是一个对象。
uuid: String!
name: String!
sku: String!
stock: String
clientMutationId: String
这些是我的实体:
// Product.php
use ApiPlatform\Core\Annotation\ApiFilter;
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;
use ApiPlatform\Core\Annotation\ApiSubresource;
use Doctrine\ORM\Mapping as ORM;
/**
* @ApiResource
* @ApiFilter(ApiPlatform\Core\Bridge\Doctrine\Orm\Filter\SearchFilter::class, properties={"name": "partial", "sku": "partial"})
*
* @ORM\Table(name="products")
*/
class Product
{
/**
* @ORM\Id
* @ORM\Column(name="product_id", type="uuid", unique=true)
* @ORM\GeneratedValue(strategy="CUSTOM")
* @ORM\CustomIdGenerator(class="Ramsey\Uuid\Doctrine\UuidGenerator")
*
* @ApiProperty(identifier=true)
*/
private $id;
/**
* @ORM\Column(type="string")
*/
private $name;
/**
* @ORM\Column(type="string")
*/
private $sku;
/**
* @ORM\ManyToOne(targetEntity="Stock", cascade={"PERSIST"})
* @ORM\JoinColumn(name="stock_id", referencedColumnName="stock_id")
*
* @ApiSubresource
*/
private $stock;
}
// Stock.php
use ApiPlatform\Core\Annotation\ApiProperty;
use ApiPlatform\Core\Annotation\ApiResource;
use Doctrine\ORM\Mapping as ORM;
/**
* @ApiResource
*
* @ORM\Table(name="stocks")
*/
class Stock
{
/**
* @ORM\Id
* @ORM\Column(name="stock_id", type="uuid", unique=true)
* @ORM\GeneratedValue(strategy="CUSTOM")
* @ORM\CustomIdGenerator(class="Ramsey\Uuid\Doctrine\UuidGenerator")
*
* @ApiProperty(identifier=true)
*/
private $id;
/**
* @ORM\Column(type="string")
*/
private $quantity;
/**
* @ORM\Column(type="string")
*/
private $unit;
}
答案 0 :(得分:1)
您无法在突变中创建嵌套实体,需要先创建嵌套实体,然后在突变中使用其IRI。 这就是为什么类型是 String 。
以前有可能,但是由于引起某些问题而将其删除。 参见:https://github.com/api-platform/core/pull/1886
答案 1 :(得分:0)
按照您的问题,我通过自己的突变创建了第一个实体。然后,当我想在第二个中使用它时,什么也没发生。 “我的购物车商品”保留不变,未链接任何海报。我不明白为什么。这是我的代码:
/**
* @ApiResource()
* @ORM\Entity(repositoryClass="App\Repository\CartRepository")
*/
class Cart
{
/**
* @ApiSubresource
* @ORM\OneToMany(targetEntity="Poster", mappedBy="cart")
*/
private $posters;
}
GraphQL突变:
mutation AddCart(
$posters: [String]!
) {
createCart(input: {
posters: $posters
}) {
cart {
id,
posters {
edges {
node {
id
}
}
}
}
}
}
变量:
{
"posters": [
"/api/posters/4733d25c-c37b-4162-b25b-fabb3e58177e"
]
}
我显然在某处犯了一个错误:) 您认为可以帮我吗? 非常感谢!
答案 2 :(得分:-1)
mutation CreateUser{
createUser(input: {
email: "user@test.com",
username: "user@test.com",
role: "ROLE_USER",
password: "bonjour",
enabled: true,
}) {
user{
id
email
username
role
reference
enabled
created
updated
}
}
}