Socket
Socket
Sign inDemoInstall

@maxim_mazurok/gapi.client.kgsearch-v1

Package Overview
Dependencies
3
Maintainers
1
Versions
68
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @maxim_mazurok/gapi.client.kgsearch-v1

TypeScript typings for Knowledge Graph Search API v1


Version published
Weekly downloads
1.3K
decreased by-4.87%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

TypeScript typings for Knowledge Graph Search API v1

Searches the Google Knowledge Graph for entities. For detailed description please check documentation.

Installing

Install typings for Knowledge Graph Search API:

npm install @types/gapi.client.kgsearch-v1 --save-dev

Usage

You need to initialize Google API client in your code:

gapi.load('client', () => {
  // now we can use gapi.client
  // ...
});

Then load api client wrapper:

gapi.client.load(
  'https://kgsearch.googleapis.com/$discovery/rest?version=v1',
  () => {
    // now we can use:
    // gapi.client.kgsearch
  }
);
// Deprecated, use discovery document URL, see https://github.com/google/google-api-javascript-client/blob/master/docs/reference.md#----gapiclientloadname----version----callback--
gapi.client.load('kgsearch', 'v1', () => {
  // now we can use:
  // gapi.client.kgsearch
});

After that you can use Knowledge Graph Search API resources:

/*
Searches Knowledge Graph for entities that match the constraints. A list of matched entities will be returned in response, which will be in JSON-LD format and compatible with http://schema.org
*/
await gapi.client.kgsearch.entities.search({});

FAQs

Last updated on 29 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc