我已经构建了以下 FQL 查询,但在添加过滤器时遇到了问题。
SELECT
about,
attire,
categories,
checkins,
company_overview,
culinary_team,
description,
fan_count,
food_styles,
founded,
general_info,
general_manager,
hours,
keywords,
location,
mission,
name,
page_id,
page_url,
parent_page,
parking,
payment_options,
phone,
price_range,
products,
public_transit,
restaurant_services,
restaurant_specialties,
talking_about_count,
TYPE,
username,
website,
were_here_count,
pic
FROM page
WHERE page_id IN
(SELECT
page_id,
latitude,
longitude
FROM place
WHERE distance(latitude, longitude, '-30.03852', '-51.17877') < 50000
LIMIT 10)
问题是我只想要与餐厅相关的页面。我想我可以通过页表中的“类别”对其进行过滤,但我不知道要使用哪种方法。
我怎样才能做到这一点?关于我可以使用的可用方法的文档在哪里(例如 categories.contains("Restaurant"))
谢谢!