例如,如果我有这些字段:
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库。