Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Knowledge Graph API in BigQuery

Is there a dump of the Knowledge Graph API on BigQuery or can I query Knowledge graph API via BigQuery SQL language?

Felipe has this wonderful talk on querying Freebase via SQL but Freebase is no more updated.

Any chance I can do the equivalent of what Felippe does with Freebase and Wikidata with the Knowledge Graph API?

like image 810
Quintin Par Avatar asked Mar 11 '18 06:03

Quintin Par


People also ask

Is Google Knowledge Graph free?

The Knowledge Graph API Search API allows developers a quota of up to 100,000 (one hundred thousand) read calls per day per project at no charge.

What is SEO knowledge graph?

The Google Knowledge Graph is a part of the universal & extended search and therefore an enhancement of the organic Google search result. The Knowledge Graph is presented in a dedicated area in the SERPs with the results from various sources delivered graphically.


1 Answers

As the Knowledge Graph Search API returns only individual matching entities I recommend to use the wikidata dump, the fh-bigquery:wikidata dataset is available in BigQuery. You can run a statement like:

SELECT id FROM [fh-bigquery:wikidata.latest_en_v1] LIMIT 1000
like image 163
Nathan Nasser Avatar answered Oct 06 '22 00:10

Nathan Nasser