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
What this means is you can restrict which fields are returned by a query using the `fields` query parameter, but this does not yet apply to included relationships.
405
+
406
+
- Currently valid:
407
+
```http
408
+
GET /articles?fields[articles]=title,body HTTP/1.1
409
+
Accept: application/vnd.api+json
410
+
```
411
+
412
+
- Not yet supported:
413
+
```http
414
+
GET /articles?include=author&fields[articles]=title,body&fields[people]=name HTTP/1.1
415
+
Accept: application/vnd.api+json
416
+
```
417
+
400
418
## Tests
401
419
402
420
I am using DotNetCoreDocs to generate sample requests and documentation.
0 commit comments