Graphoquent
Graphoquent is a Laravel packages that turns Eloquent models into
queryable GraphQL objects., (*1)
Automatic Type Inference
By default, Graphoquent tries to infer your model's type from
three places:, (*2)
- The model's
$casts
array
- The model's
$dates
array
- The model's
@property
and @property-read
DocBlock annotations
Given the following model:, (*3)
/**
* @property int $count
*/
class Foo extends Model
{
use \Galahad\Graphoquent\Queryable;
protected $casts = [
'stars' => 'float',
];
protected $dates = [
'created_at',
];
}
Graphoquent will build the following GraphQL Type:, (*4)
type Foo {
count: Int
stars: Float
created_at: String
}
Authorization
Gates & Policies
Graphoquent uses Laravel Gates for default authorization:, (*5)
-
expose
: Can this user (or null
if not logged in) use introspection
to lear about this Type?
Custom
You may provide custom authorization for any Model by defining an
authorizeGraphQL
method on the model:, (*6)
public function authorizeGraphQL($actor, $ability)
{
if ('expose' === $ability) {
return true;
}
return $actor && $actor->id === $this->owner_id;
}