You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Responder does not have a single primary key field but has composite key of incident_id and responder_id, what is best path for representing this as model and as a retrieve endpoint?
This fails though when using a generics.RetrieveAPIView, as an attempt to retrieve a responder instance based on primary key will return many when the get() method is expecting a single instance.
A possible solution is to keep current model and build custom endpoint that will expect multiple responses for the single endpoint.
The text was updated successfully, but these errors were encountered:
I think we discussed this in the meeting last night, but just to document here: Since our data is static, we thought it might be easiest to solve this hackishly, by creating an intermediate table that converts the composite key into a single key.
The responder info will need to be accessible via API one way or another, eventually. We may not need it (via API) for the demo and 'bagel shop incident' projects, though.
Responder does not have a single primary key field but has composite key of incident_id and responder_id, what is best path for representing this as model and as a retrieve endpoint?
Current model, which works for list method:
This fails though when using a generics.RetrieveAPIView, as an attempt to retrieve a responder instance based on primary key will return many when the get() method is expecting a single instance.
A possible solution is to keep current model and build custom endpoint that will expect multiple responses for the single endpoint.
The text was updated successfully, but these errors were encountered: