[SOLVED] [OverpassTurbo] Find all bike co-ops?

Hello

I’d like to query OT to find all the bike co-ops in France.

The following times out:

[out:json][timeout:25];

{{geocodeArea:FR}}->.searchArea;

(
	node["shop"="bicycle"]["service:bicycle:diy"="yes"](area.searchArea);
	way["shop"="bicycle"]["service:bicycle:diy"="yes"](area.searchArea);
	relation["shop"="bicycle"]["service:bicycle:diy"="yes"](area.searchArea);
);
// print results
out body;
>;
out skel qt;

Any idea what’s wrong?

Thank you.

The solution was simply to increase timeout to 40 seconds. I thought it’d take a lot less since the query only returns 123 items.