Skip to content

Is it possible to get model relation in API service? #41

@jorbascrumps

Description

@jorbascrumps

If I define an Eloquent relationship on an API model am I able to get that relation in the API service?

Somewhere in app (ie, controller):

// App\Models\User
$author = Auth::find(1);

// Cristal\ApiWrapper\Bridges\Laravel\Model
$post = new Post([
    'title' => 'Untitled',
]);
$post->setRelation('author', $author);
$post->save();

API service:

public function createPost(array $attributes): array
{
    // Get author relation?
}

From what I can tell, models as a concept don't exist in the service and only attributes are available. If that's the case, what is the point of setting relations? Hope I'm missing something.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions