I was curious to know if there is a way to problematically get s list of all the FQL tables, a list of all their columns and which columns are index-able. I can't find anything in the documentation short of following the docs to create data objects defining these details for each FQL table.
问问题
1940 次
3 回答
1
好吧,我没有尝试过自己,但这似乎完全符合您的要求。
https://github.com/jwerle/fql-workbench/blob/master/README.md
于 2013-09-13T21:26:51.683 回答
1
我认为它不存在,但是,Facebook 有关于可用表的完整参考,包括它们各自的列和列数据类型:
https://developers.facebook.com/docs/reference/fql/
问候。
于 2012-12-27T17:07:36.997 回答
0
可以使用表“列”和“表”在 FQL 中实现显示表或描述功能。这就是https://developers.facebook.com/docs/reference/fql/所说的:
column - 一个 FQL 表,用于记录其他 FQL 表中的列 table - 一个 FQL 表,其中包含有关其他 FQL 表的信息
我们可以使用 FQL 查询这些表以找出常规表的架构。
于 2014-01-13T16:37:24.547 回答