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
description: 'Allows you to reduce the response to contain only the properties you need. If your desired property is nested, you can address it using nested arrays. Example: '.\sprintf(
* For the full copyright and license information, please view the LICENSE
9
+
* file that was distributed with this source code.
10
+
*/
11
+
12
+
declare(strict_types=1);
13
+
14
+
namespaceApiPlatform\Laravel\JsonApi\State;
15
+
16
+
useApiPlatform\Metadata\Operation;
17
+
useApiPlatform\State\ProviderInterface;
18
+
19
+
/**
20
+
* This is a copy of ApiPlatform\JsonApi\State\JsonApiProvider without the support of sort,filter and fields as these should be implemented using QueryParameters and specific Filters.
21
+
* At some point we want to merge both classes but for now we don't have the SortFilter inside Symfony.
0 commit comments