Download the PHP package mustorze/mustafilter without Composer
On this page you can find all versions of the php package mustorze/mustafilter. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package mustafilter
Must a Filter
A simple management filters for Laravel, use into REST and GraphQL
Prerequisites
- To run this project, you must have
php >= 7.1
,laravel\framework >= 5.4.*
andwebonyx/graphql-php ~0.10.0
- Yes it`s made for Laravel
Step 1
-
Include in yours
composer.json
in the requirements these"mustorze/mustafilter": "1.0"
then runcomposer update
- Or just run
composer require mustorze/mustafilter
Step 2
- Add
Mustorze\MustAFilter\Traits\Filterable
trait to models you want to filter.
Step 3
-
Extend your Filter class from from
Mustorze\MustAFilter\Contracts\Filter
Abstract one - This is a example filter for a
user
model
All ready
How to use
GraphQL
This is a default query in GraphQL
If your followed all the steps well, you can easily test your query passing the filter your want in args of your query
Now we know how to use in GraphQL
REST
In REST we usually make a query with some arguments we needs to use and we return the results of this query for the requesters
Example:
With the Filter, you need to add the Filter scope to the constructor. the Filter Scope automatically detects the arguments in the request and apply in the query
Now if this request is a POST or GET, and have a email
param in the request, the email
filter its applied to the builder
localhost/users/?email=example.com
The filter we was created are applying a where like
in query, all the results than have example.com
in email column
will be returned