Content API: Limit fields on includes?

Is there a way to get the Content API to limit the fields on includes, e.g. only include tag slugs rather than all fields of a tag object? Example of what I’d like to receive:

{
  "posts": [
    {
      "title": "Lorem ipsum",
      "url": "https://examplecom",
      "tags": [
        {
          "slug": "tag-a",
        },
        {
          "slug": "tag-a",
        },
        {
          "slug": "tag-c",
        },
      ]
    },
    ...
  ]
}

I’m trying to use the Content API to fetch a large result list of posts with tags included and need to keep the size minimal, but the verbose include of tags is blowing up the size of the JSON.

Thanks!

Narp, sorry! One of those things that we always wanted to do but there hasn’t been enough demand/interest to justify the time it would take.

PRs welcome :slight_smile:

Bummer. Thanks, Hannah!