如何在不编写长查询的情况下查询所有 GraphQL 类型字段?
2022-08-30 06:08:11
假设您有一个 GraphQL 类型,它包含许多字段。如何在不写下包含所有字段名称的长查询的情况下查询所有字段?
例如,如果我有这些字段:
public function fields()
{
return [
'id' => [
'type' => Type::nonNull(Type::string()),
'description' => 'The id of the user'
],
'username' => [
'type' => Type::string(),
'description' => 'The email of user'
],
'count' => [
'type' => Type::int(),
'description' => 'login count for the user'
]
];
}
要查询所有字段,通常查询如下所示:
FetchUsers{users(id:"2"){id,username,count}}
但是我想要一种方法来获得相同的结果,而无需编写所有字段,如下所示:
FetchUsers{users(id:"2"){*}}
//or
FetchUsers{users(id:"2")}
有没有办法在 GraphQL 中做到这一点?
我正在使用Folkloreatelier/laravel-graphql库。