Is there any way to include the tags without using both include and fields?
This works: await api.posts.browse({fields: "title,html,featured,feature_image,id,slug", include: "tags"})
This does not work: await temp1.api.posts.browse({fields: "title,html,featured,feature_image,id,slug,tags"})
(Gives Error: Could not understand request.)
Fair enough. I don’t think you can use tags in the fields option because it’s not actually a field, it’s an array of objects. Here’s what worked for me: