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

Query Scopes #24

Closed
aaemnnosttv opened this issue Feb 24, 2018 · 0 comments
Closed

Query Scopes #24

aaemnnosttv opened this issue Feb 24, 2018 · 0 comments

Comments

@aaemnnosttv
Copy link
Owner

Right now there currently is no way to add query scopes via a Query\Builder.

The closest you can get is to define the scope all at once with a new query from the model like so:

class Thing extends Silk\Post\Model
{
    public static function published()
    {
        return static::query()->withStatus('published');
    }
}

This works, but doesn't allow for composition using multiple scopes as each call starts a new query.

Query scopes should be chainable methods to allow for composing a complex scope.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant