Git Product home page Git Product logo

Comments (4)

tuupola avatar tuupola commented on May 30, 2024

You need to have also have transformer for your relations ie. in this case messages. Something like the following untested code.

class ChatTransformer extends Fractal\TransformerAbstract
{
    protected $availableIncludes = [
        "messages"
    ];

    public function includeMessages(Chat $chat)
    {
        $messages = $chat->messages;
        return $this->collection($messages, new MessageTransformer);
    }

    public function transform(Chat $chat)
    {
        return [
            "chat_event_id" => (integer)$chat->chat_event_id ?: 0,
            "chat_expires_at" => (string)$chat->chat_expires_at ?: null
        ];
    }
}

class ChatMessageTransformer extends Fractal\TransformerAbstract
{
    public function transform(ChatMessage $message)
    {
        return [
            "body" => (string)$message->body ?: null
        ];
    }
}

from slim-api-skeleton.

danielwlockhart avatar danielwlockhart commented on May 30, 2024

That got it! Thanks!

from slim-api-skeleton.

danielwlockhart avatar danielwlockhart commented on May 30, 2024

Thanks again! One more question... What would be different about a
belongsTo relationship? I tried the same as above and it returned an empty
result...here is my Spot Entity class snippet for relations:

public static function relations(MapperInterface $mapper, EntityInterface
$entity)

{

    return [

        'university' => $mapper->belongsTo($entity, 'App\University',

'user_university_id'),

    ];

}

Here is my transformer snippet

protected $defaultIncludes = [
"university"
];

public function includeUniversity(User $user)
{
    $university = $user->university;
    return $this->collection($university, new UniversityTransformer);
}

I tried swapping it to $this->item because I thought that made more sense
but it throws an error that way saying that it expects an object of type
App/University and got an item of type Spot/Relation/BelongsTo

Sorry to be such a bother...I really appreciate the help!

from slim-api-skeleton.

tuupola avatar tuupola commented on May 30, 2024

Not sure if it causes your problem but but belongsTo returns one object not collection.

public function includeUniversity(User $user)
{
    $university = $user->university;
    return $this->item($university, new UniversityTransformer);
}

from slim-api-skeleton.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.