I have used Sitecore fast query in my C# code to get items and sub items which are matching with the criteria. But fast query does not returning any items though there are.
My fast query is like below;
fast:/sitecore/content/...//*[@__Workflow state='{item id}']
This will return no items, but removing fast:
from the query will return the items by taking more time.
I tried escaping spaces in the query path as well like below, but it didn't work;
fast:/sitecore/content/...//*[@#__Workflow state#='{item id}']
Are there any way to get sub items with a filtration using fast query?