3 replies
July 2022

Pablo_Ruiz_Muzquiz

I believe it’s critical that the URL syntax is corrected, I lost a few hours because of the inconsistency between this tutorial and the docs here Filtering, Locale, and Publication State for REST API - Strapi Developer Docs

long story short, the valid query has the form of
GET /api/books?filters[authors][hobbies][$contain]=“dance”
and not
GET /api/books?filters\[authors\][hobbies][$contain]=“dance”

beware of those pesky \

September 2024

Woorg

Hello, and when i have

	filters: {
			work_category: {
				slug: {
					$in: some,some,
        },
			},
		},

not one but multiple it not work

1 reply
September 2024 ▶ Woorg

Woorg

figured it out need to use array $in: [some,some],