pomm-project / api-platform
Api platform bridge for pomm
Installs: 11 548
Dependents: 0
Suggesters: 0
Security: 0
Stars: 17
Watchers: 3
Forks: 7
Open Issues: 4
Requires
- php: >=7.0
- api-platform/core: ~2.0
- pomm-project/pomm-bundle: ~2.4
This package is auto-updated.
Last update: 2024-11-07 18:43:20 UTC
README
Use Pomm with Api platform.
Filters
Search Filter
The search filter supports:
partial
strategy usesLIKE %text%
to search for fields that containing the text.start strategy
usesLIKE text%
to search for fields that starts with text.end strategy
usesLIKE %text
to search for fields that ends with text.word_start
strategy usesLIKE text% OR LIKE % text%
to search for fields that contains the word starting with text.
Prepend the letter i
to the filter if you want it to be case insensitive. For example ipartial
or iexact
.
Add an entry in services.yml
:
services: app.book.search_filter: parent: 'api_platform.pomm.search_filter' arguments: [ { 'title': 'exact', 'description': 'partial'} ] tags: [ { name: 'api_platform.filter', id: 'book.search' } ]
And in resources.yml
use the service filter:
resources: AppBundle\Entity\Book: collectionOperations: get: filters: ['book.search']