Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add the possibility to use the relation names on the allowedFields. #917

Merged
merged 2 commits into from
Jan 8, 2024
Merged

Add the possibility to use the relation names on the allowedFields. #917

merged 2 commits into from
Jan 8, 2024

Conversation

carvemerson
Copy link
Contributor

Problem:

Package currently converts relation names to plural snake_case in fields parameters, causing inconsistencies when using singular relation names in API requests.

Suppose that I have the bellow model:

class Task extends Model
{
    public function user(): BelongsTo
    {
        return $this->belongsTo(User::class);
    }
    
    public function userOwnerTestName(): BelongsTo
    {
        return $this->belongsTo(User::class, 'user_id');
    }
}

I would like to request the userOwnerTestName relationship, my first try was do this:

api/v1/tasks?include=userOwnerTestName&fields[userOwnerTestName]=id,email&fields[tasks]=user_id

and the response is:

 "data": [
    {
        "user_id": "9b055f1c-caae-40ca-aa4a-79a5a42a9dd3",
        "userOwnerTestName": {
            "id": "9b055f1c-caae-40ca-aa4a-79a5a42a9dd3",
            "name": "Mavis Erdman I",
            "email": "delilah.walker@example.com"
        }
    },
    {
        "user_id": "9b055f1c-caae-40ca-aa4a-79a5a42a9dd3",
        "userOwnerTestName": {
            "id": "9b055f1c-caae-40ca-aa4a-79a5a42a9dd3",
            "name": "Mavis Erdman I",
            "email": "delilah.walker@example.com"
        }
    },
]

But I was expecting:

 "data": [
    {
        "user_id": "9b055f1c-caae-40ca-aa4a-79a5a42a9dd3",
        "userOwnerTestName": {
            "id": "9b055f1c-caae-40ca-aa4a-79a5a42a9dd3",
            "email": "delilah.walker@example.com"
        }
    },
    {
        "user_id": "9b055f1c-caae-40ca-aa4a-79a5a42a9dd3",
        "userOwnerTestName": {
            "id": "9b055f1c-caae-40ca-aa4a-79a5a42a9dd3",
            "email": "delilah.walker@example.com"
        }
    },
]

If I change the request to:

api/v1/tasks?include=userOwnerTestName&fields[user_owner_test_names]=id,email&fields[tasks]=user_id

it works like a charm! But I need to convert the relationship name to plural and use the snake_case format.

Solution:

Introduce a configuration option to control relation name conversion:

  • convert_relation_names_to_snake_case_plural: true (default behavior)
  • convert_relation_names_to_snake_case_plural: false (preserves original relation names)

Example Usage:

// Original behavior (plural snake_case):
api/tasks?include=userOwnerTestName&fields[user_owner_test_names]=id,name
// New behavior (preserves relation name):
api/tasks?include=userOwnerTestName&fields[userOwnerTestName]=id,name

@AlexVanderbist
Copy link
Member

Thanks, LGTM! Glad to have one of the final todos in the package done 👍 I'll merge this, add a test for it and tag a new release.

@AlexVanderbist AlexVanderbist merged commit 002f394 into spatie:main Jan 8, 2024
14 of 15 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants